Subversion Repositories SmartDukaan

Rev

Rev 2442 | Rev 2780 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2442 Rev 2455
Line 81... Line 81...
81
	/**
81
	/**
82
	* For closing the open session in sqlalchemy
82
	* For closing the open session in sqlalchemy
83
	*/
83
	*/
84
	void closeSession(),
84
	void closeSession(),
85
	
85
	
-
 
86
	/**
-
 
87
	* Save email details, to be sent later
-
 
88
	*/
86
	void saveUserEmailForSending(1:string emailTo, 2:string emailFrom, 3:string subject, 4:string body, 5:string source, 6:string emailType) throws (1:HelperServiceException se),
89
	void saveUserEmailForSending(1:string emailTo, 2:string emailFrom, 3:string subject, 4:string body, 5:string source, 6:string emailType) throws (1:HelperServiceException se),
-
 
90
	
-
 
91
	/**
-
 
92
	* Retreives all the emails pending for dispatch
-
 
93
	*/
87
	list<UserEmail> getEmailsToBeSent(1:string emailType) throws (1:HelperServiceException se),
94
	list<UserEmail> getEmailsToBeSent(1:string emailType) throws (1:HelperServiceException se),
-
 
95
	
-
 
96
	/**
-
 
97
	* Marks email as sent after successful dispatch
-
 
98
	*/
88
	void markEmailAsSent(1:i64 emailId) throws (1:HelperServiceException se),
99
	void markEmailAsSent(1:i64 emailId) throws (1:HelperServiceException se),
89
	
100
	
90
	void sendMail(1:Mail mail) throws (1:HelperServiceException se),
101
	void sendMail(1:Mail mail) throws (1:HelperServiceException se),
91
	void sendText(1:TextMessage message) throws (1:HelperServiceException se),
102
	void sendText(1:TextMessage message) throws (1:HelperServiceException se),
92
	
103