我让我的Mailgun驱动程序在Xampp上运行。但是当我尝试在我的实时服务器上发送电子邮件时,他们会抛出500内部服务器错误。
这是我的.env配置:
angular.module('App').filter('highlight', function($sce) {
return function(text, phrase) {
if (phrase) text = text.replace(new RegExp('('+phrase+')', 'gi'),
'<span class="highlighted">$1</span>')
return $sce.trustAsHtml(text)
}
});
我的控制器
MAIL_DRIVER=smtp
MAIL_HOST=smtp.mailgun.org
MAIL_PORT=2525
MAIL_USERNAME=postmaster@mail.h****ine.com
MAIL_PASSWORD=4b6a*********7f6d21cf
MAIL_ENCRYPTION=null
MAILGUN_DOMAIN=mail.har***e.com
MAILGUN_SECRET=key-4********8da6833510**0
错误:
\Mail::send('emails.template', $data, function ($message) {
$message->from('postmaster@mail.ha*****e.com', 'My name');
$message->to('fra***.xp@gmail.com')->subject('Message from...');
});
有什么想法吗?感谢。