欢迎各位兄弟 发布技术文章
这里的技术是共享的
Laravel 提供了非常简单的邮件发送 API,但是文档却不是太清晰,再加上它采用传递闭包(回调函数)的方式调用,导致邮件发送的使用门槛偏高。
Laravel 4 和 Laravel 5 的邮件发送使用方式完全一致。Laravel 5 的邮件发送中文文档在:http://laravel-china.org/docs/5.0/mail
本文中,我将以 163 邮箱为例,展示如何用 Laravel 内置的邮件发送类来发送邮件。
修改邮件发送配置。4.2 在 app/config/mail.php,5 在 config/mail.php,修改以下配置:
'host' => 'smtp.163.com', 'port' => 25, 'from' => array('address' => '***@163.com', 'name' => 'TestMail'), 'username' => '***@163.com', // 注意,这里必须和上一行配置里面的邮件地址一致 'password' => '****',
在控制器或者模型里,调用以下代码:
$data = ['email'=>$email, 'name'=>$name, 'uid'=>$uid, 'activationcode'=>$code]; Mail::send('activemail', $data, function($message) use($data) { $message->to($data['email'], $data['name'])->subject('欢迎注册我们的网站,请激活您的账号!'); });
邮件视图为 views/activemail.blade.php:
<!doctype html> <html> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> </head> <body> <a href="{{ URL('active?uid='.$uid.'&activationcode='.$activationcode) }}" target="_blank">点击激活你的账号</a> </body> </html>
程序员,Swift Contributor,正在写《iOS 可视化编程与 Auto Layout》。
相关日志:
用 Sublime 开发 Laravel —— Sublime Text 插件推荐
Laravel 4.2 中队列服务(queue)的使用感受和踩到的坑
Laravel 4 系列入门教程(三)【最适合中国人的Laravel教程】
标签: PHP Laravel 邮件 Mail← 给 UILabel 中的文字增加 line-through / Strikethrough (删除线)样式Laravel 5 系列入门教程(四)【最适合中国人的 Laravel 教程】【完结】 →
评论:
imooto_cc
2017-12-11 14:28Swift_TransportException thrown with message "Expected response code 250 but got code "553", with message "553 authentication is required,163 smtp14,EsCowAA3T3YLJS5ajXK1Dg--.35823S2 1512973579
这个是什么原因呢?换了qq 163 都是提示这个错误回复alex
2017-11-06 23:31这个code是随机生成的吗回复winnie
2017-11-01 17:35===============mail.php文件
<?php
return [
'driver' => env('MAIL_DRIVER', 'smtp'),
'host' => env('MAIL_HOST', 'smtp.163.com'),
'port' => env('MAIL_PORT', 587),
'from' => ['address' => 'xxxh@163.com', 'name' => 'Test'],
'encryption' => env('MAIL_ENCRYPTION', 'tls'),
'username' => env('MAIL_USERNAME', null),
'password' => env('MAIL_PASSWORD', null),
'sendmail' => '/usr/sbin/sendmail -bs',
'pretend' => false,
];
=============
.env文件配置
MAIL_DRIVER=smtp
MAIL_HOST=smtp.163.com
MAIL_PORT=587
MAIL_ENCRYPTION=tls
MAIL_USERNAME=xxxh@163.com
MAIL_PASSWORD=xxxh
这样配置后发邮件出现 Expected response code 250 but got code "553", with message "553 Local user only,163 smtp14,EsCowAB3_akEk_lZvAjPBg--.25694S2 1509528324 " 错误,如果是按照博主的来配置port=25会出现“Expected response code 250 but got code "530", with message "530 5.7.1 Authentication required”
163的邮箱已经开启了smtp服务,而且使用的是客户端授权码作为MAIL_PASSWORD 本机可以ping通smtp.163.com回复JohnLui
2017-11-01 18:21@winnie:from 和 username 必须一致呦。如果不行试试清空缓存,还不行就不用加密了,端口用 25 加密设置成 null。回复winnie
2017-11-02 10:13@JohnLui:from 里的address和username配置是同一个163邮箱,我清空了缓存试了也不行.我尝试了端口25不加密也还是报553的错误.每次编辑配置后都有php artisan config:clear 及php artisan cache:clear 好想知道是哪里错了.程序是在docker中运行的回复JohnLui
2017-11-02 12:12@winnie:可能是你的 ip 被封了。。。回复Watts
2017-04-05 15:01请问5.1中,注册时邮箱验证应该怎么写,要重写postRegister方法吗?不知道你上面的uid和uname 怎么获取的,可以把完整的代码展示出来吗回复悦宝宝
2017-03-21 20:08Connection could not be established with host stmp.163.com [php_network_getaddresses: getaddrinfo failed: ��֪������������ #0]
求解这个是因为什么阿 就是提示连不上163主机。 不知道怎么解决~回复icymoon
2017-01-04 16:26Expected response code 220 but got code \"\", with message \"\"",
。。不知道怎么解决。。配置完全一样, 163的客户端授权码也开了回复yeruja
2017-01-05 11:14@icymoon:您好, 我也刚刚遇到相同的问题, 请问您解决了吗?回复yeruja
2017-01-05 11:21@icymoon:我刚刚端口号改为25就OK了, 之前别的例子用的都是端口号465回复icymoon
2017-01-06 19:52@yeruja:我也是。。。 但是用25端口依然会报错,但是邮件收到了。。。很不可思议,,回复自恋狂
2017-01-04 11:10用的5.1,学习的时间不久,现在发送普通邮件是正常的,但是发送有view视图的邮件时就一直超时了,一直搞不明白!
Whoops, looks like something went wrong.
1/1
Swift_TransportException in StreamBuffer.php line 269:
Connection could not be established with host smtp.163.com [Connection timed out #110]
in StreamBuffer.php line 269
at Swift_Transport_StreamBuffer->_establishSocketConnection() in StreamBuffer.php line 62
at Swift_Transport_StreamBuffer->initialize(array('protocol' => '', 'host' => 'smtp.163.com', 'port' => '25', 'timeout' => '30', 'blocking' => '1', 'tls' => false, 'type' => '1', 'stream_context_options' => array())) in AbstractSmtpTransport.php line 113
at Swift_Transport_AbstractSmtpTransport->start() in Mailer.php line 79
at Swift_Mailer->send(object(Swift_Message), array()) in Mailer.php line 374
at Mailer->sendSwiftMessage(object(Swift_Message)) in Mailer.php line 196
at Mailer->send('notifications::email', array('level' => 'info', 'subject' => null, 'greeting' => null, 'introLines' => array('You are receiving this email because we received a password reset request for your account.'), 'outroLines' => array('If you did not request a password reset, no further action is required.'), 'actionText' => 'Reset Password', 'actionUrl' => 'http://test.z-love.com/password/reset/dafb5d7b21597b7ede8cedab5df7c6ef196c2ac1d298235052308773b8020f0c', 'message' => object(Message)), object(Closure)) in MailChannel.php line 81回复kaka
2016-12-21 14:37Connection could not be established with host smtp.qq.com [ #0] 这是什么意思呀 ,,,有没有解决的办法回复菜鸟程序员
2016-12-06 16:26请问用laravel框架 发送邮件找回密码怎么写回复白
2016-12-02 20:10Expected response code 250 but got code "530", with message "530 5.7.1 Authe 博主您好!你能帮我看看这是怎么回事么?我很急!谢谢!!
function sendMail()
{
// $name = '学院君';
// $flag = Mail::send('Login.active',['name'=>$name],function($message){
// $to = '1298528156@qq.com';
// $message ->to($to)->subject('测试邮件');
// });
// if($flag){
// echo '发送邮件成功,请查收!';
// }else{
// echo '发送邮件失败,请重试!';
// }
Mail::raw('水水水水',function ($message){
$message->subject('提醒邮件');
$message->to('1298528156@qq.com');
});
}
上面是控制器代码
'driver' => env('MAIL_DRIVER', 'smtp'),
'host' => env('MAIL_HOST', 'smtp.163.com'),
'port' => env('MAIL_PORT', 25),
'encryption' => env('MAIL_ENCRYPTION', null),
'username' => env('13521107990@163.com'),
'password' => env('bai123'),
'from' => ['address' => '13521107990@163.com', 'name' => '白'],
'sendmail' => '/usr/sbin/sendmail -bs',
这是mail.php 各种方法都试了 都是这个错回复JohnLui
2016-12-02 20:19@白:'driver' => env('MAIL_DRIVER', 'smtp'), 这个函数的意思是先从 .env 里面读 MAIL_DRIVER 的值,如果没有,就赋值为 smtp,所以,你需要检查一下你的 .env。回复zab
2017-11-03 21:40@JohnLui:用163发送邮件,有时成功,大多情况不成功,返回554,总是被163视为垃圾邮件怎么办呢?如果这不能解决,那通过163发送邮件就没有什么鸟用了回复骚年不再少
2017-06-06 16:54@白:哥们 你这个问题解决了吗 我跟你的问题一样回复lllllll
2016-11-13 09:26验证的时候route怎么写啊回复wentailai
2016-09-26 16:21求帮助,,,为什么我下载的框架没有 mail这个类啊。这样子的话应该怎么结局这个问题?回复wotemenige
2017-10-12 10:53@wentailai:需要做一个事件监听 命令行回复MONkye___
2016-09-12 13:29博主我想请问一下 怎么样判断邮件到底发送成功没有回复you件
2016-09-08 09:12Failed to authenticate(鉴定) on SMTP server with username "13141224138@163.com" using 2 possible authenticators(认证者) 怎么弄。。回复gmzhang
2016-09-10 11:34@you件:在设置163的SMTP时,163需要我们设置一个授权码!然后在laravel中,将这个授权码代替邮箱密码使用,就可以了。回复张小白
2016-10-25 18:03@gmzhang:腾讯的企业邮箱也出现同样的问题,但貌似没有授权吗,要怎么解决?多谢!回复mushroom
2016-10-27 15:25@张小白:解决了吗回复张小白
2016-10-27 17:56@mushroom:解决了。端口写错了!smtp.exmail.qq.com (端口 25),使用SSL,端口号465333
2016-08-24 10:41发送邮件提示: ErrorException in SimpleMimeEntity.php line 83: getmypid() has been disabled for security reasons
因为是在服务器上,空间买的,无法更改php.ini设置,请问这个函数被屏蔽了,怎么发邮件呢。回复claire
2016-08-09 17:07Maximum function nesting level of '100' reached, aborting!
这个什么错误 求救回复stermpuppy
2016-12-11 22:06@claire:在bootstrap/autoload.php最上面加上一句
ini_set('xdebug.max_nesting_level', 120);回复初学者
2016-08-04 10:30老师 我为什么本地发邮箱报错超时啊回复CanoeChow
2016-08-02 09:52您好博主! 我出现了问题.
我采用的框架版本是 laravel5.2
以下是我config/mail.php 的配置
<?php
return [
'driver' => 'smtp',
'host' => 'smtp.qq.com',
'port' => 465,
'from' => ['address' => '285549199@qq.com', 'name' => 'Welcome'],
'encryption' => null,
'username' => '285549199@qq.com',
'password' => 'xxxxx',
'sendmail' => '/usr/sbin/sendmail -bs',
];
app/Http/routes.php采用如下代码
Route::get('mail', function () {
$data = ['name' => 'CanoeChow'];
Mail::send('emails.hello', $data, function ($message) {
$message->to('a17855827493@icloud.com')->subject('Welcome!');
$message->attach(public_path().'img/pic.jpg');
});
return 'OK!';
});
结果:
Swift_TransportException in AbstractSmtpTransport.php line 404:
Connection to smtp.qq.com:465 Timed Out
求您解答~谢谢~回复JohnLui
2016-08-02 11:48@CanoeChow:错误提示很明显呀:Connection to smtp.qq.com:465 Timed Out回复CanoeChow
2016-08-02 11:50@JohnLui:我解决了.
因为qq邮箱采用了ssl加密
因此encryption要设置为ssl.
这样就能发送成功了.回复jL
2016-06-22 00:09发送成功了,感谢!回复wuzhyong
2016-06-16 10:38很简单的问题,账号和密码问题,
( ! ) Fatal error: Uncaught exception 'Swift_TransportException' with message ' in C:\wamp\www\news\lib\mail\classes\Swift\Transport\AbstractSmtpTransport.php on line 383
( ! ) Swift_TransportException: Expected response code 250 but got code "553", with message "553 Mail from must equal authorized user " in C:\wamp\www\news\lib\mail\classes\Swift\Transport\AbstractSmtpTransport.php on line 383
这个错误导致原因很简单,发件人不对
setFrom账号要与setUsername统一回复1 2 3