CStorage.SaveEMail Method |
Namespace: VO
Tip |
---|
The following shows a logical template of this method:
X# 1METHOD SaveEMail(cId AS STRING, oEMail AS CEMail) AS LOGIC PASCAL CLASS MyCStorage 2//Save oEMail with the current ID 3//You should save the following 4// 1.) oEMail:MailHeader for received mails, not for sent mails 5// call oEMail:SetHeaderInfo() to create the MailHeader 6// 2.) oEMail:Body 7// 3.) oEMail:Html 8// 4.) Call Self:SaveAttachments(oEMail) 9// 5.) Save oEMail:AttachmentInfo 10RETURN TRUE |