OScript API/Built-in Package Index

Class: MailMessage

The built-in functions in the MailMessage class provide the ability to create and read email messages for SMTP or POP3 sessions.

The MailMessage class offers the following functionality:

Class Attributes

Add a recipient as a blind-carbon-copy (BCC) recipient of an e-mail message.

Add a recipient as a carbon-copy (CC) recipient of an e-mail message.

Set the Content-Disposition for a message part to 'attachment'.

Set the Content-Disposition for a message part to 'inline'.

Set the message Content-Transfer-Encoding to '7-bit'.

Set the message Content-Transfer-Encoding to '8-bit'.

Set the message Content-Transfer-Encoding to 'base64'.

Set the message Content-Transfer-Encoding to 'quoted-printable'.

Add a recipient as the primary recipient of an e-mail message.

Class Methods

New( )

Returns a new MailMessage instance, or undefined if an error occured.

Instance Methods

AddContent( String content, Integer contentTransferEncodingType )

Adds inline content to a multipart email message.

AddFileAttachment( String attachmentName, String filename, Integer contentTransferEncodingType, String mimeType )

Same as calling AddFilePart (attachmentName, filename, CONTENT_ATTACHMENT, contentTransferEncodingType,"text/plain" ) .

AddFilePart( String partName, String fileName, Integer contentDisposition, Integer contentEncoding, String mimeType )

Adds data to a multi-part email from a file.

AddRecipient( Integer type, String emailAddress, [String fullName] )

Add a recipient to an email.

AddStringAttachment( String attachmentName, String stringData, Integer contentTransferEncodingType, String mimeType )

Same as calling AddStringPart (attachmentName, stringData, CONTENT_INLINE, contentTransferEncodingType,"text/plain" ) .

AddStringPart( String partName, String stringData, Integer contentDisposition, Integer contentEncoding, String mimeType )

Adds string data to a multi-part email.

Retrieves the body of the message.

retrieves the email content type.

Retrieves the date of the email.

GetHeaderField( String fieldName )

Retrieves the field data for a specific header field.

Returns a list of all the email message headers.

Retrieve the a string for the last error code.

Retrieves a list of the multipart content.

Retrieves the full text of the raw message.

Returns a RecArray of recipients.

Retrieves the sender of the email.

Returns the subject from the email.

Checks if the message is a multi-part email.

SetContent( String content, [Integer contentEncoding] )

Adds content to the body of the email.

SetContentType( String mediaType )

Set the email content type.

SetDate( Date date )

Sets the date of the email.

SetHeaderField( String fieldName, String fieldData )

Sets a generic header field in the message.

SetSender( String sender )

Sets the sender of the email.

SetSubject( String subject )

Set the email subject.

Class Attributes

Add a recipient as a blind-carbon-copy (BCC) recipient of an e-mail message.

Integer CC_RECIPIENT

Add a recipient as a carbon-copy (CC) recipient of an e-mail message.

Set the Content-Disposition for a message part to 'attachment'.

Set the Content-Disposition for a message part to 'inline'.

Set the message Content-Transfer-Encoding to '7-bit'.

Set the message Content-Transfer-Encoding to '8-bit'.

Set the message Content-Transfer-Encoding to 'base64'.

Set the message Content-Transfer-Encoding to 'quoted-printable'.

Add a recipient as the primary recipient of an e-mail message.

Class Methods

New

MailMessage New()

Returns a new MailMessage object

Returns:

A new MailMessage object or undefined if there was an error constructing the object.

Instance Methods

AddContent

Integer AddContent( String content,
                    Integer contentTransferEncodingType )

Adds inline content to a multipart email message.

Parameters

content

the content to inline

contentTransferEncodingType

the content transfer encoding type, see above for constants

Returns:

Returns 0 for success and -1 if an error occurred.

AddFileAttachment

Integer AddFileAttachment( String attachmentName,
                           String filename,
                           Integer contentTransferEncodingType,
                           String mimeType )

Same as calling AddFilePart ( attachmentName, filename, CONTENT_ATTACHMENT, contentTransferEncodingType ). mimeType param is optional and defaults to 'text/plain'.

Parameters

attachmentName

the name for the attachment

filename

the filename of the attachment

contentTransferEncodingType

the content encoding

mimeType

the content mimeType

Returns:

Returns 0 for success and -1 if an error occurred.

AddFilePart

Integer AddFilePart( String partName,
                     String fileName,
                     Integer contentDisposition,
                     Integer contentEncoding,
                     String mimeType )

Adds parts to a multipart email, from a file. Content disposition constants are CONTENT_INLINE or CONTENT_ATTACHMENT. See above for content type encodings. The mimeType string is optional and defaults to "text/plain".

Parameters

partName

the name for the part

fileName

the filename to use for the part data

contentDisposition

the content disposition type

contentEncoding

the content encoding

mimeType

the content mimeType

Returns:

Returns 0 for success and -1 if an error occurred.

AddRecipient

Integer AddRecipient( Integer type,
                      String emailAddress,
                      [String fullName] )

The type can be one of PRIMARY_RECIPIENT, CC_RECIPIENT or BCC_RECIPIENT. The email param should be the fully qualified email address and the fullName parameter is optional and can contain the users full name ie, "John Doe". You can add as many recipients as you like.

Parameters

type

type can be one of PRIMARY_RECIPIENT, CC_RECIPIENT or BCC_RECIPIENT

emailAddress

fully qualified email address of the recipient

fullName

optional, can be the full name of the user

Returns:

Returns 0 for success and -1 if an error occurred.

AddStringAttachment

Integer AddStringAttachment( String attachmentName,
                             String stringData,
                             Integer contentTransferEncodingType,
                             String mimeType )

Same as calling AddStringPart ( attachmentName, stringData, CONTENT_INLINE, contentTransferEncodingType ). mimeType param is optional and defaults to 'text/plain'.

Parameters

attachmentName

the name for the attachment

stringData

the string data of the attachment

contentTransferEncodingType

the content encoding

mimeType

the content mimeType

Returns:

Returns 0 for success and -1 if an error occurred.

AddStringPart

Integer AddStringPart( String partName,
                       String stringData,
                       Integer contentDisposition,
                       Integer contentEncoding,
                       String mimeType )

Adds parts to a multipart email, from a text source. See above for content disposition constants. See above for content type encodings. The mimeType string is optional and defaults to "text/plain".

Parameters

partName

the name for the part

stringData

the string data to use for the part data

contentDisposition

the content disposition type

contentEncoding

the content encoding

mimeType

the content mimeType

Returns:

Returns 0 for success and -1 if an error occurred.

GetContent

String GetContent()

Returns a string containing the content, or body, of the email. No parameters. Only applicable for non-multipart messages.

Returns:

Returns a string containing the content, or body, of the email.

GetContentType

String GetContentType()

Gets the content type of the email.

Returns:

Returns the content type of the email.

GetDate

String GetDate()

Gets the date of the email.

Returns:

Returns the date of the email.

GetHeaderField

String GetHeaderField( String fieldName )

Gets the data of the specified header field. If the message doesn't contain the fieldname, then the string is empty.

Parameters

fieldName

the name of the field to retrieve

Returns:

Returns the data of the field. If the message doesn't contain the fieldname, then the string is empty.

GetHeaders

List GetHeaders()

Returns a List of all the message headers. The list will be undefined if an error occurred.

Returns:

Returns a List of all the message headers. The list will be undefined if an error occurred.

GetLastError

String GetLastError()

No parameters. Returns an error string for the last error that occured.

Returns:

Returns an error string for the last error that occured.

GetMultipartContent

RecArray GetMultipartContent()

Returns a RecArray of all of the parts in the email. The format is as follows:

Returns:

Returns a RecArray of all of the parts in the email.

GetRawMessage

String GetRawMessage()

Returns a String containing the entire raw contents of the email.

Returns:

Returns a String containing the entire raw contents of the email.

GetRecipients

RecArray GetRecipients()

Returns a recArray of the current email recipients with the following record structure:

Column 1 : Integer : name=Type

Column 2 : String : name=Address

Column 3 : String : name=RealName

See above for type constants

Returns:

Returns a recArray of the current email recipients.

GetSender

String GetSender()

Gets the sender of the email.

Returns:

Returns the sender of the email.

GetSubject

String GetSubject()

Gets the subject of the email.

Returns:

Returns the subject of the email.

IsMultipart

Boolean IsMultipart()

TRUE if the email is a multi-part email, FALSE otherwise. No parameters.

Returns:

Returns TRUE if the email is a multi-part email, FALSE otherwise.

SetContent

Integer SetContent( String content,
                    [Integer contentEncoding] )

Adds text to the body of the email. This function is only for simple non-multipart messages.

Parameters

content

the content to add to the body

contentEncoding

optional, the contentEncoding type to use to encode the content with, see constants above. The default is ENCODING_QUOTEDPRINTABLE.

Returns:

Returns 0 for success and -1 if an error occurred.

SetContentType

Integer SetContentType( String mediaType )

Sets the content type of the email.

Parameters

mediaType

Sets the content type of the email, default is "text/plain".

Returns:

Returns 0 for success and -1 if an error occurred.

SetDate

Integer SetDate( Date date )

Sets the date of the email.

Parameters

date

the date of the email.

Returns:

Returns 0 for success and -1 if an error occurred.

SetHeaderField

Integer SetHeaderField( String fieldName,
                        String fieldData )

Sets a generic header field in the message.

Parameters

fieldName

the name of the field to set

fieldData

the date for the field

Returns:

Returns 0 for success and -1 if an error occurred.

SetSender

Integer SetSender( String sender )

Sets the sender of the email.

Parameters

sender

the sender of the email.

Returns:

Returns 0 for success and -1 if an error occurred.

SetSubject

Integer SetSubject( String subject )

Sets the subject of the email.

Parameters

subject

the subject of the email.

Returns:

Returns 0 for success and -1 if an error occurred.

 Copyright © 2019 OpenText Corporation. All rights reserved.