fusani / mailer
There is no license information available for the latest version (0.1.0) of this package.
This is a simple wrapper for PHP Mailer
0.1.0
2021-11-11 01:23 UTC
Requires
- php: >=7.0
- phpmailer/phpmailer: ~6.0
Requires (Dev)
- phpunit/phpunit: 4.2.*
- squizlabs/php_codesniffer: 2.*
This package is auto-updated.
Last update: 2025-01-11 08:03:35 UTC
README
This is a simple wrapper for PHPMailer. It uses arrays to initialize PHPMailer and returns the PHPMailer object so that you can simply use PHPMailer to send emails. At present, on ly Gmail is supported but others will be added as I see a need for them.
Or other people fork and commit.
Gmail
The below code will configure PHPMailer to send emails from a gmail account. Only username and password are required. You can pass in a from array if you are using a donotreply email address for example.
$config = [
'username' => 'testuser',
'password' => 'testpass',
'from' => [
'email' => 'from.email@gmail.com',
'name' => 'David Tennant',
],
];
$mailer = MailFactory::buildGmailMailer($config);