|
README
Greqo README
Report bugs at http://code.google.com/p/greqo/issues/list LICENSEGPL or LGPL where applicable REQUIREMENTS
INSTALLATION
USAGEBasic Example: // load and send an email using account settings in conf/login.php
require_once($root_dir . 'greqo/greqo.class.php');
$Greqo = new Greqo();
$Greqo->load_mailer();
$subject = 'Greqo Mailer Acceptance Test ' . date('(Y-m-d H:i:s)');
$body = <<<EMAIL
This is a test of the Greqo GmailMailer, an extension of PHPMailer for use
with Gmail accounts.
For more information on Greqo, see:
http://code.google.com/p/greqo/
EMAIL;
$SendTo[] = array($Greqo->email, 'Greqo Mail Recipient');
$Greqo->send_mail($subject, $body, $SendTo);For additional examples, see the acceptance tests directory. |
► Sign in to add a comment