Subversion Repositories SmartDukaan

Rev

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

Rev 7410 Rev 8020
Line 109... Line 109...
109
 
109
 
110
service HelperService extends GenericService.GenericService{
110
service HelperService extends GenericService.GenericService{
111
	/**
111
	/**
112
	* Save email details, to be sent later; Also returns its identifier.
112
	* Save email details, to be sent later; Also returns its identifier.
113
	*/
113
	*/
114
	i64 saveUserEmailForSending(1:list<string> emailTo, 2:string emailFrom, 3:string subject, 4:string body, 5:string source, 6:string emailType, 7:list<string> cc, 8:list<string> bcc,) throws (1:HelperServiceException se),
114
	i64 saveUserEmailForSending(1:list<string> emailTo, 2:string emailFrom, 3:string subject, 4:string body, 5:string source, 6:string emailType, 7:list<string> cc, 8:list<string> bcc, 9:i64 sourceId) throws (1:HelperServiceException se),
115
	
115
	
116
	/**
116
	/**
117
	* Retreives all the emails pending for dispatch
117
	* Retreives all the emails pending for dispatch
118
	*/
118
	*/
119
	list<UserEmail> getEmailsToBeSent() throws (1:HelperServiceException se),
119
	list<UserEmail> getEmailsToBeSent() throws (1:HelperServiceException se),