diff --git a/packages/bydauto/src/Commands/BYDAutoCommand.php b/packages/bydauto/src/Commands/BYDAutoCommand.php index 90e546c..67ef0b7 100644 --- a/packages/bydauto/src/Commands/BYDAutoCommand.php +++ b/packages/bydauto/src/Commands/BYDAutoCommand.php @@ -29,27 +29,11 @@ public function handle() public function action_mail_test() { - $users = [ - ['remark' => '陈结婷', 'email' => '402917192@qq.com'], - ['remark' => '何汝立', 'email' => '136111753@qq.com'], - ['remark' => '刘梦吉', 'email' => '842681856@qq.com'], - ['remark' => '詹林钦', 'email' => '1908995103@qq.com'], - ['remark' => '王迎迎', 'email' => '1123724727@qq.com'], - ['remark' => '曾嘉威', 'email' => '2951015145@qq.com'], - ['remark' => '刘甜甜', 'email' => '941605227@qq.com'], - ['remark' => '符志勇', 'email' => '583493528@qq.com'], - ['remark' => '廖瑞莹', 'email' => '42794345@qq.com'], - ['remark' => '刘志伟', 'email' => '857284399@qq.com'], - ['remark' => '张光东', 'email' => '543396628@qq.com'], - ['remark' => '赖俊文', 'email' => '591908300@qq.com'], - ['remark' => '刘星宇', 'email' => '1776807891@qq.com'], - ['remark' => '郑立佳', 'email' => '315783857@qq.com'], - ['remark' => '郑广勇', 'email' => '973978463@qq.com'], - ['remark' => '湛善栋', 'email' => '838406377@qq.com'] - ]; - - $message = new HelloMail(name: '张三'); - Mail::to('sam@ifme.in')->send($message); + $users = Contact::query()->get(); + foreach ($users as $user) { + $message = new HelloMail(name: $user->remark); + Mail::to($user->email)->send($message); + } } public function action_init()