在 Laravel 中发送电子邮件后在表格中设置“状态 = 已发送”

Posted

技术标签:

【中文标题】在 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 中发送电子邮件后在表格中设置“状态 = 已发送”的主要内容,如果未能解决你的问题,请参考以下文章

使用 localhost 在 php 中发送电子邮件

在 Rails 中发送电子邮件通讯/调查

在 oracle 10g 中发送电子邮件

登录操作后在 Guzzle HTTP 客户端中设置 Authorization Bearer 标头 - Laravel

无法在 asp.net vb 网站中发送电子邮件

无法使用 Gmail SMTP 设置在 Joomla 中发送电子邮件。收到 SMTP 服务器错误:需要 5.5.1 身份验证。如何解决这个问题?