ay4t / php-mailer-template
Installs: 5
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Language:HTML
Requires
- phpmailer/phpmailer: v6.6.5
- twig/twig: v3.4.3
README
Installation
composer require ay4t/php-mailer-template
Example Usage
berikut ini contoh penggunaan dasar
/** new email registration */
$email = new \Ay4t\Emailhtml\Mailer();
$email->mergeData([
'fullname' => 'your_fullname',
'dashboard_url' => 'https://localhost/dashboard',
'username' => 'aahadr',
'password' => '123123',
]);
$email->setAltBody('');
$email->setSubject('Subject Email');
$email->sendTo('email_to', 'your_fullname');
$email->send();
contoh penggunaan dengan menerapkan template untuk email registrasi
/** new email registration */
$email = new \Ay4t\Emailhtml\Mailer( $filename = 'account_welcome');
$email->mergeData([
'fullname' => 'your_fullname',
'dashboard_url' => 'https://localhost/dashboard',
'username' => 'aahadr',
'password' => '123123',
]);
$email->setAltBody('');
$email->setSubject('Subject Email');
$email->sendTo('email_to', 'your_fullname');
$email->send();