在 laravel 8 的数据库中输入新的 post 数据后如何向所有用户发送邮件
how to send mail to all users when new post data is entered in database in laravel 8
我想在用户在数据库中创建新的 post 时向所有用户发送通知通知应该作为新 post 创建的
发送给所有用户
<?php
namespace App\Console\Commands;
use Illuminate\Console\Command;
use App\Models\User;
use App\Notifications\PostNotificationforAll;
class Postnotification extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'post:notification';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Post notification for all users';
/**
* Create a new command instance.
*
* @return void
*/
public function __construct()
{
parent::__construct();
}
/**
* Execute the console command.
*
* @return int
*/
public function handle()
{
$users= User::all();
foreach ($users as $user) {
$user->notify(new PostNotificationforAll());
}
}
}
谁能帮我看看我应该使用什么条件
你可以用观察者来做
创建新的 post 后,您可以使用观察者 class
运行 事件
<?php
namespace App\Observers;
use App\Models\Post;
class PostObserver
{
/**
* Handle the Rate "created" event.
*
* @param Post $post
* @return void
*/
public function created(Post $post)
{
event(new PostCreated($post));
}
}
您可以在 PostCreated 事件中收听它,然后在收听者中您可以通过此通知用户 post
您可以从 laravel docs
阅读更多关于观察者的信息
<?php
namespace App\Observers;
use App\Models\Post;
use App\Models\User;
class PostObserver
{
public function created(Post $post)
{
$users = User::where(...)->get();
// Send the notifications
Notification::send($users, new Postnotification($post));
}
}
您可以通过创建新邮件来完成 class
php artisan make:mail 通知用户
然后制作一个 mail.blade.php 将您的 html 模板邮件发送给带有 $user 的用户:是创建 post 的用户名,并且 $ post_title : 是 post 创建的
的标题
=> 在 Mail/NotifyUsers
class NotifyUsers extends Mailable
{
use Queueable, SerializesModels;
public $user,$post_title;
/**
* Create a new message instance.
*
* @return void
*/
public function __construct($user,$post_title)
{
$this->user = $user;
$this->post_title = $post_title;
}
/**
* Build the message.
*
* @return $this
*/
public function build()
{
return $this->view('emails.mail')->with(['user' => $user , 'post_title' => $post_title]);
}
}
然后转到具有商店post功能的控制器并输入此代码
foreach (User::all('email') as $email) {
Mail::to($email)->send(new NotifyUsers(auth()->user()->name , $request->post_title));
}
我想在用户在数据库中创建新的 post 时向所有用户发送通知通知应该作为新 post 创建的
发送给所有用户<?php
namespace App\Console\Commands;
use Illuminate\Console\Command;
use App\Models\User;
use App\Notifications\PostNotificationforAll;
class Postnotification extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'post:notification';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Post notification for all users';
/**
* Create a new command instance.
*
* @return void
*/
public function __construct()
{
parent::__construct();
}
/**
* Execute the console command.
*
* @return int
*/
public function handle()
{
$users= User::all();
foreach ($users as $user) {
$user->notify(new PostNotificationforAll());
}
}
}
谁能帮我看看我应该使用什么条件
你可以用观察者来做 创建新的 post 后,您可以使用观察者 class
运行 事件<?php
namespace App\Observers;
use App\Models\Post;
class PostObserver
{
/**
* Handle the Rate "created" event.
*
* @param Post $post
* @return void
*/
public function created(Post $post)
{
event(new PostCreated($post));
}
}
您可以在 PostCreated 事件中收听它,然后在收听者中您可以通过此通知用户 post
您可以从 laravel docs
阅读更多关于观察者的信息<?php
namespace App\Observers;
use App\Models\Post;
use App\Models\User;
class PostObserver
{
public function created(Post $post)
{
$users = User::where(...)->get();
// Send the notifications
Notification::send($users, new Postnotification($post));
}
}
您可以通过创建新邮件来完成 class
php artisan make:mail 通知用户
然后制作一个 mail.blade.php 将您的 html 模板邮件发送给带有 $user 的用户:是创建 post 的用户名,并且 $ post_title : 是 post 创建的
的标题
=> 在 Mail/NotifyUsers
class NotifyUsers extends Mailable
{
use Queueable, SerializesModels;
public $user,$post_title;
/**
* Create a new message instance.
*
* @return void
*/
public function __construct($user,$post_title)
{
$this->user = $user;
$this->post_title = $post_title;
}
/**
* Build the message.
*
* @return $this
*/
public function build()
{
return $this->view('emails.mail')->with(['user' => $user , 'post_title' => $post_title]);
}
}
然后转到具有商店post功能的控制器并输入此代码
foreach (User::all('email') as $email) { Mail::to($email)->send(new NotifyUsers(auth()->user()->name , $request->post_title)); }