Create the e-mail, optionally assigning the subject and primary recipient.
EMail
EMail
([string $subject = ""], [string $to = ""])
-
string
$subject: The subject line of the email.
-
string
$to: A comma-separated list of addresses for the primary recipient(s).
Add another Bcc recipient to the email
string
AddBcc
(string $recipient)
-
string
$recipient: The email address to append.
Add another Cc recipient to the email
string
AddCc
(string $recipient)
-
string
$recipient: The email address to append.
Add another Error recipient to the email
string
AddErrorsTo
(string $recipient)
-
string
$recipient: The email address to append.
Add another Reply-to address to the email
string
AddReplyTo
(string $recipient)
-
string
$recipient: The email address to append.
Add another recipient to the email
string
AddTo
(string $recipient)
-
string
$recipient: The email address to append.
Actually send the email
void
Send
(string $recipient)
-
string
$recipient: The email address to append.
Set the body of the e-mail.
string
SetBody
( $body, string $recipient)
-
string
$recipient: The email address to append.
-
$body
Set the visible From address for the e-mail.
string
SetFrom
( $sender, string $recipient)
-
string
$recipient: The visible From address
-
$sender
Set the envelope sender address for the e-mail.
string
SetSender
( $sender, string $recipient)
-
string
$recipient: The e-mail address for the sender
-
$sender
Set the subject line for the email
string
SetSubject
( $subject, string $recipient)
-
string
$recipient: The new subject line.
-
$subject
Append something with a comma delimter onto the existing referenced string
string
_AppendDelimited
(stringref &$onto, string $extra)
-
stringref
&$onto: The string we will be appending to.
-
string
$extra: What we will be appending