laravel发送邮件"Invalid ID given <67e72f21a23ae3b0bac504d418b5875a@->"
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了laravel发送邮件"Invalid ID given <67e72f21a23ae3b0bac504d418b5875a@->"相关的知识,希望对你有一定的参考价值。
线下发送成功,线上发送失败,但是阿里云的端口已经开了,设置也设置了465,就不知道为什么会出现这个问题
是因为你的nginx的 server_name 配置为 -,swiftmailer会把这个当作邮件验证ID @ 后面的部分,导致ID无效,解决办法是先起一个标准的名称 比如 domain.com.
配置文件一般在 /etc/nginx/sites-available/你的站点.conf,去那里面调整,然后重启, ubuntu 里面是 systemctl restart nginx.service 这条命令,反正我调试这个bug也是接近崩溃了 TT@
参考技术A 不符合邮件的rfc规范格式建议查邮件列表中 邮箱是否合法
英文数字@域名的格式
如
adc@qq.com
在 Laravel 中发送电子邮件后在表格中设置“状态 = 已发送”
【中文标题】在 Laravel 中发送电子邮件后在表格中设置“状态 = 已发送”【英文标题】:Set "status = sent" in table after email sent in Laravel 【发布时间】:2021-03-04 12:25:54 【问题描述】:我的应用程序以电子邮件的形式向用户发送提要。为此,我创建了一个命令名称 SendFeedEmails.php 来发送电子邮件。
上述命令将获取今天的所有提要并将 user_id 存储在数组中并执行名为 sendEmailToUser 的私有函数。
通过该功能,所有数据都将进入 FeedEmailDigest 可邮寄类。
但我想在发送给用户的电子邮件后,在名为 feed_statuses 的表中将状态设置为 sent。
-
SendFeedEmails.php(命令)
<?php
namespace App\Console\Commands;
use App\User;
use App\FeedStatus;
use App\Mail\FeedEmailDigest;
use Illuminate\Console\Command;
use Illuminate\Support\Facades\Mail;
class SendFeedEmails extends Command
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'feed:emails';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Send email notification to users about feeds.';
/**
* Create a new command instance.
*
* @return void
*/
public function __construct()
parent::__construct();
/**
* Execute the console command.
*
* @return int
*/
public function handle()
// Get all feeds for today
$feeds = FeedStatus::query()
->with(['feeds'])
->where('msg_date', now()->format('Y-m-d'))
->where('status', 'pending')
->orderBy('user_id')
->get();
// Group by user
$data = [];
foreach ($feeds as $feed)
$data[$feed->user_id][] = $feed->toArray();
//dd($data);
foreach ($data as $userId => $feeds)
$this->sendEmailToUser($userId, $feeds);
// Send email
return 0;
private function sendEmailToUser($userId, $feeds)
$user = User::find($userId);
Mail::to($user)->send(new FeedEmailDigest($feeds));
-
FeedEmailDigest.php(邮件)
<?php
namespace App\Mail;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Mail\Mailable;
use Illuminate\Queue\SerializesModels;
class FeedEmailDigest extends Mailable implements ShouldQueue
use Queueable, SerializesModels;
private $feeds;
/**
* Create a new message instance.
*
* @return void
*/
public function __construct($feeds)
$this->feeds = $feeds;
/**
* Build the message.
*
* @return $this
*/
public function build()
return $this->markdown('emails.feed-digest')
->with('feeds', $this->feeds);
-
feed_statuses(table)
【问题讨论】:
在实际发送电子邮件时触发了一个事件(在the manual 中描述)但是我不清楚触发该事件的参数是什么。它获取Swit_Message
实例以及一些数据,但您可能需要先将其记录在某处以查看它具有哪些数据,以确定如何推断正确的行以从中更新(因为邮件已排队)
【参考方案1】:
试试下面的
编辑 sendmail 功能成为..
private function sendEmailToUser($userId, $feeds)
$user = User::find($userId);
//Since you expect to have more than one entry for same user eg. feed 1 user 1, feed 2 user 1, a loop will be in order
foreach($feeds as $feed)
$affected = DB::table('feed_statuses')->where(['user_id'=> $userId , 'feed_id' => $feed->id])->update(['status' => 'sent']);
Mail::to($user)->send(new FeedEmailDigest($feeds));
【讨论】:
显示错误。 "试图获取非对象的属性 'id'" 只需将 'feed_id' => $feed->id 更改为 'feed_id' => $feed['feed_id']以上是关于laravel发送邮件"Invalid ID given <67e72f21a23ae3b0bac504d418b5875a@->"的主要内容,如果未能解决你的问题,请参考以下文章
Laravel消息通知发送邮件 Expected response code 250 but got code "553", with message "553 Mail
Laravel - 尝试创建帐户,登录并发送激活电子邮件正在抛出“尝试获取非对象的属性”
Laravel Passport 基本 api 身份验证返回 "error":"invalid_client","message":&quo
发送邮件被退回,提示: Helo command rejected: Invalid name 错误