<?php
//EXAMPLE
$mailout = new mailer;
$mailout->from('[email protected]', 'Sender');
$mailout->add_recipient('[email protected]');//add a recipient in the to: field
$mailout->add_cc('[email protected]');//carbon copy
$mailout->add_bcc('[email protected]');//blind carbon copy
$mailout->subject('Test');//set subject
$mailout->message('Hi,
FILLER
---------------------------------------------
The quick brown fox jumped over the lazy dog.
The quick brown fox jumped over the lazy dog.
The quick brown fox jumped over the lazy dog.
The quick brown fox jumped over the lazy dog.
The quick brown fox jumped over the lazy dog.
The quick brown fox jumped over the lazy dog.
The quick brown fox jumped over the lazy dog.
---------------------------------------------
Thank You!
');//set message body
$mailout->send();//send email(s)
?>
|