public static
boolean
|
#
send_text( string/array $to, string $subject, string $message, string $from = null, string $cc = null, string $bcc = null )
Sends text through email..
Sends text through email..
Parameters
- $to
string/array $to_addresses The email address to send to
- $subject
string $subject The subject of the email
- $message
string $message The body of the email, in plain text format
- $from
string $from The email address this mail is coming from
- $cc
string $cc If provided, the CC address to send to
- $bcc
string $bcc If provided, the BCC address to send to
Returns
boolean Returns 'true' if the mail was accepted for delivery
|
public static
boolean
|
#
send_html( string/array $to, string $subject, string $message, string $from = null, string $cc = null, string $bcc = null )
Sends HTML through email..
Sends HTML through email..
Parameters
- $to
string/array $to_addresses The email address to send to
- $subject
string $subject The subject of the email
- $message
string $message The body of the email, in plain text format
- $from
string $from The email address this mail is coming from
- $cc
string $cc If provided, the CC address to send to
- $bcc
string $bcc If provided, the BCC address to send to
Returns
boolean Returns 'true' if the mail was accepted for delivery
|