shuchkin/react-smtp-client
最新稳定版本:0.2
Composer 安装命令:
composer require shuchkin/react-smtp-client
包简介
ReactPHP async SMTP Client
关键字:
README 文档
README
ReactPHP async SMTP client to send a emails like php mail(). Simple UTF-8 text/plain messages out-of-the-box.
Basic Usage
$loop = \React\EventLoop\Factory::create(); $smtp = new \Shuchkin\ReactSMTP\Client( $loop ); // localhost:25 $smtp->send('info@example.org', 'sergey.shuchkin@gmail.com', 'Test ReactPHP mailer', 'Hello, Sergey!')->then( function() { echo 'Message sent'.PHP_EOL; }, function ( \Exception $ex ) { echo 'SMTP error '.$ex->getCode().' '.$ex->getMessage().PHP_EOL; } ); $loop->run();
Google SMTP Server – How to send bulk emails for free
$loop = \React\EventLoop\Factory::create(); $smtp = new \Shuchkin\ReactSMTP\Client( $loop, 'tls://smtp.gmail.com:465', 'username@gmail.com','password' ); $recipients = ['sergey.shuchkin@gmail.com','example@example.com']; foreach( $recipients as $to ) { $smtp->send('username@gmail.com', $to, 'Test ReactPHP mailer', 'Hello, Sergey!')->then( function() use ( $to ) { echo 'Message to '.$to.' sent via Google SMTP'.PHP_EOL; }, function ( \Exception $ex ) use ( $to ) { echo 'Message to '.$to.' not sent: '.$ex->getMessage().PHP_EOL; } ); } $loop->run();
Google limit for personal SMTP 99 messages per 24 hours.
Using mime/mail class, send mails and attachments
See https://github.com/shuchkin/simplemail
$ composer require shuchkin/simplemail
$smtp = new \Shuchkin\ReactSMTP\Client( $loop, 'example.com:25', 'username', 'password' ); // setup fabric $sm = new \Shuchkin\SimpleMail(); $sm->setFrom( 'example@example.com' ); $sm->setTransport( function ( \Shuchkin\SimpleMail $m, $encoded ) use ( $smtp ) { $smtp->send( $m->getFromEmail(), $encoded['to'], $encoded['subject'], $encoded['message'], $encoded['headers'] ) ->then( function () { echo "\r\nSent mail"; }, function ( \Exception $ex ) { echo "\r\n" . $ex->getMessage(); } ); }); // send mail $sm->to( ['sergey.shuchkin@gmail.com', 'reactphp@example.com'] ) ->setSubject('Async mail with ReactPHP') ->setText('Async mail sending perfect! See postcard') ->attach('image/postcard.jpg') ->send();
Install
The recommended way to install this library is through Composer. New to Composer?
This will install the latest supported version:
$ composer require shuchkin/react-smtp-client
Changelog
0.2 (2020-02-19) - basic UTF-8 text/plain messages out-of-the-box, ReactPHP actual versions in composer.json
0.1.1 (2019-03-12) - Initial release
统计信息
- 总下载量: 5.33k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 24
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2019-02-03