-
Notifications
You must be signed in to change notification settings - Fork 0
ateliee edited this page Oct 27, 2015
·
1 revision
$MAIL = new class_mail;
// setting
$MAIL->setFromName("sample",SYSTEM_MAIL_ENCODE,SYSTEM_PHP_ENCODE);
$MAIL->setFrom("[email protected]");
$MAIL->setSubject("sample mail",SYSTEM_MAIL_ENCODE,SYSTEM_PHP_ENCODE);
$MAIL->setBody($body);
$MAIL->setTo("[email protected]");
$MAIL->addCCMail("[email protected]");
$MAIL->addBCCMail("[email protected]");
// attribe file
$MAIL->addFile("/path/to/file.jpg","sample.jpg");
// send mail
$MAIL->send();