FromAddress (Dundas Mailer Control 1.0)

Dundas

FromAddress (Dundas Mailer Control 1.0)

Overview | Properties | Methods

The email address of the message sender.

Syntax

MailerObject.FromAddress = [string]

The FromAddress property syntax has the following parts:

Part

Description

string

The email address the message is being sent from. Defaults to a zero-length string.

Remarks

If the FromName property is a zero-length string then this FromAddress property determines the contents of the From header, and when the client reads the message this email address will be what appears in the client software's From field (e.g. [email protected]).

If the FromName property has been set then both the FromName and FromAddress properties make up the From header of the email. When the client reads the message the From field will then contain either both properties (e.g. John Doe <[email protected]>) or just the FromName value, depending on the client's user agent.

Although this property does not have to be set when using SendMail (the function calls will not fail) we highly recommend that you do specify a valid email address for FromAddress.

NOTE: You MUST set this property if you want to use either the ConfirmRead property or the ReturnReceipt property.

If the ReplyTo collection has no items in it then the address used for replies is retrieved from this FromAddress property. You MUST SET the FromAddress property when posting an article with the PostArticle method.

See Also: FromName