ay4t / php-mailer-template
1.0.0
2022-11-14 07:45 UTC
Requires
- phpmailer/phpmailer: v6.6.5
- twig/twig: v3.4.3
README
安装说明
composer require ay4t/php-mailer-template
示例用法
以下是一个基本用法的示例
/** new email registration */
$email = new \Ay4t\Emailhtml\Mailer();
$email->mergeData([
'fullname' => 'your_fullname',
'dashboard_url' => 'https:///dashboard',
'username' => 'aahadr',
'password' => '123123',
]);
$email->setAltBody('');
$email->setSubject('Subject Email');
$email->sendTo('email_to', 'your_fullname');
$email->send();
以下是一个使用模板进行注册邮件的示例
/** new email registration */
$email = new \Ay4t\Emailhtml\Mailer( $filename = 'account_welcome');
$email->mergeData([
'fullname' => 'your_fullname',
'dashboard_url' => 'https:///dashboard',
'username' => 'aahadr',
'password' => '123123',
]);
$email->setAltBody('');
$email->setSubject('Subject Email');
$email->sendTo('email_to', 'your_fullname');
$email->send();