lianzh / mail
a quick mail send php lib
dev-master
2017-11-24 07:04 UTC
Requires
- php: >=5.4
- ext-mbstring: *
- psr/log: ~1.0
- swiftmailer/swiftmailer: ~4.2|~5.0
This package is not auto-updated.
Last update: 2024-12-22 05:19:06 UTC
README
a quick mail send php lib
<?php
require __DIR__ . '/vendor/autoload.php';
$settings = [
'driver' => 'smtp', #Supported: "smtp", "mail", "sendmail"
'host' => 'smtp.exmail.qq.com',
'port' => 465,
'encryption' => 'ssl',
'username' => "zhang3@qq.com",
'password' =>"XzFqsmf",
'pretend' => 0,#启用此选项,邮件不会真正发送,而是写到日志文件中
'from' => array('address' => 'zhang3@wiwide.com', 'name' => '张三'),
];
$mailHelper = new \LianzhMail\MailHelper($settings);
\LianzhMail\MailHelper::thisIsExample($mailHelper, ['li4@qq.com']);