mirror of
				https://github.com/v2board/v2board.git
				synced 2025-10-30 17:02:04 +08:00 
			
		
		
		
	update
This commit is contained in:
		| @@ -8,6 +8,7 @@ use App\Http\Controllers\Controller; | ||||
| use Illuminate\Http\Exceptions\HttpResponseException; | ||||
| use Illuminate\Support\Facades\Mail; | ||||
| use Illuminate\Support\Facades\Redis; | ||||
| use App\Jobs\SendEmail; | ||||
|  | ||||
| class CommController extends Controller | ||||
| { | ||||
| @@ -34,21 +35,15 @@ class CommController extends Controller | ||||
|         } | ||||
|         $code = rand(100000, 999999); | ||||
|         $subject = config('v2board.app_name', 'V2Board') . '邮箱验证码'; | ||||
|         Mail::send( | ||||
|             'mail.sendEmailVerify',  | ||||
|             [ | ||||
|                 'code' => $code, | ||||
|                 'name' => config('v2board.app_name', 'V2Board') | ||||
|             ], | ||||
|             function ($message) use($email, $subject) {  | ||||
|                 $message->to($email)->subject($subject);  | ||||
|             } | ||||
|         ); | ||||
|         if (count(Mail::failures()) >= 1) { | ||||
|             // 发送失败 | ||||
|             abort(500, '发送失败'); | ||||
|         } | ||||
|  | ||||
|     	$this->dispatch(new SendEmail([ | ||||
|     		'email' => $email, | ||||
|     		'template_name' => 'mail.sendEmailVerify', | ||||
|     		'template_value' => [ | ||||
|     			'code' => $code, | ||||
|     			'name' => config('v2board.app_name', 'V2Board') | ||||
|     		], | ||||
|     		'subject' => $subject | ||||
|     	])); | ||||
|         Redis::set($redisKey, $code); | ||||
|         Redis::expire($redisKey, 600); | ||||
|         return response([ | ||||
|   | ||||
		Reference in New Issue
	
	Block a user