Package: mailer

Send and receive mail APIs. 

Since 1.5.2

Methods

deleteMessage

method deleteMessage(emailServer as emailserveringoing, messageUID as int)

Deletes the message.

Since 1.5.2

downloadAttachments

function downloadAttachments(emailServer as emailserveringoing, messageUID as int) as collection of int

Downloads file attachments to storage from the specified message UID (messageUID) and returns the storage file IDs of the stored files.

Since 1.5.2

receive

function receive(emailServer as emailserveringoing, startUID as int, lastUID as int) as list of emailin

Receives messages starting from the specified message UID (startUID) up to the specified last message UID (lastUID). The application should keep track of UIDs.

  1. The startUID argument is mandatory. Message UIDs start at 0 (zero).
  2. The lastUID argument is optional and can be null. If lastUID is null, then all available messages are returned.

Since 1.5.2

send

function send(emailServer as emailserveroutgoing, emailOut as emailout) as bool

Sends a message using the specified outgoing email server (emailServer) and email details (emailOut). Returns true if the message was sent successfully, or false otherwise.

Since 1.5.2

These functions are now ordered alphabetically for easier reference.

Types

emailserveroutgoing

PropertyTypeDefault valueDescription
hoststringThe host name (or IP) of the email server.
portstring25The port of the email server.
userstringThe user to authenticate with the email server.
passwordstringThe password to authenticate with the email server.
protocolstringOne of smtp, smtps.
debugbooleanfalseTrue if the interactions with this server should be logged into the debugLog property.
debugLogcollection of stringThe debug log for this session. The collection will hold only the last 1024 messages. The log is not persistent and is only valid for this session.
startTLSbooleanfalse
propertiesstringComma (,) separated properties with their values.

emailserverincoming

PropertyTypeDefault valueDescription
hoststringThe host name (or IP) of the email server.
portstring993The port of the email server.
userstringThe user to authenticate with the email server.
passwordstringThe password to authenticate with the email server.
protocolstringOne of  pop3, pop3s, imapimaps.
folderNamestringThe folder for which messages are read.
debugbooleanfalseTrue if the interactions with this server should be logged into the debugLog property.
debugLogcollection of stringThe debug log for this session. The collection will hold only the last 1024 messages. The log is not persistent and is only valid for this session.
propertiesstringComma (,) separated properties with their values.
convertToUTF3BbooleantrueConvert the received string tu UTF in 3 bytes format (for MySQL UTF8 compatibility).
maxMessagesint16Max messages to retrieve from the server
downloadAttachmentsbooleanfalseDownload attachments in the receive function?

emailin

PropertyTypeDescription
uidstringThe unique id of the message. The id is unique only to this mail server folder and not globally. Message UIDs start at 0 (zero).
fromstringThe sender email address.
fromNamestringThe sender full name.
tostringThe receiver email address.
toNamestringThe receiver full name.
subjectstringThe subject.
contentstringThe message content in the original format (html, text etc.)
datedatetimeThe date the message was received.
hasAttachmentsbooleanIf the message has any attachments this field will be true.
attachmentscollection of intStorage ids of files that have been downloaded.if emailserverincoming.downloadAttachments is true.

emailout

PropertyTypeDescription
fromstringThe sender email address.
fromNamestringThe sender full name.
tostringThe receiver email address.
toNamestringThe receiver full name.
subjectstringThe subject.
contentstringThe message content in the original format (html, text etc.)
datedatetimeThe date the message was send/received??
hasAttachmentsbooleanIf the message has any attachments this field will be true.
attachmentscollection of intThe storage ids of files to attach to the email.