ay4t/php-mailer-template

1.0.0 2022-11-14 07:45 UTC

This package is auto-updated.

Last update: 2024-05-21 08:47:35 UTC


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();