Skip to content
ateliee edited this page Oct 27, 2015 · 1 revision

メール(class_mail.php)

$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();
Clone this wiki locally