Click or drag to resize

CStorage.LoadEMail Method

X#
This method returns a CEMail object filled with all data addressed through the cID. You have to implement this method and the meaning of cID. THIS METHOD IS NOT IMPLEMENTED IN CSTORAGE AND NOT CALLED BY THE INTERNET CLASSES

Namespace:  VO
Assembly:  VOInternetClasses (in VOInternetClasses.dll) Version: 2.19
Syntax
 VIRTUAL METHOD LoadEMail(
	cId AS STRING
) AS USUAL
Request Example View Source

Parameters

cId
Type: String
Contains a unique identifier that describes the Email

Return Value

Type: Usual
oEmail
Remarks
Tip Tip
The following shows a logical template of this method:
X#
 1METHOD LoadEMail(cId AS STRING) CLASS MyCStorage
 2//You should do the following:
 3LOCAL oEMail AS CEMail
 4oEMail := SELF:CreateNewEmail()
 5// 1.) assign oEMail:MailHeader
 6// 2.) Call oEMail:GetHeaderInfo()
 7// 3.) assign oEMail:Body
 8// 4.) assign oEMail:Html
 9// 5.) assign oEMail:AttachmentInfo
10
11RETURN oEMail
See Also