| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <?php
- namespace App\Mail;
- use Illuminate\Bus\Queueable;
- use Illuminate\Mail\Mailable;
- use Illuminate\Queue\SerializesModels;
- use Illuminate\Support\Facades\Cache;
- class EmailCertif extends Mailable
- {
- use Queueable, SerializesModels;
- protected $uuid;
- protected $lang;
- /**
- * Create a new message instance.
- *
- * @return void
- */
- public function __construct(string $uuid, string $subject = 'wikipali email certification', string $lang = 'en-US')
- {
- //
- $this->uuid = $uuid;
- $this->lang = $lang;
- $this->subject($subject);
- }
- /**
- * Build the message.
- *
- * @return $this
- */
- public function build()
- {
- // 生成一个介于 1000 到 9999 之间的随机整数
- $randomNumber = random_int(1000, 9999);
- $key = "/email/certification/" . $this->uuid;
- Cache::put($key, $randomNumber, 30 * 60);
- return $this->view('emails.certification.' . $this->lang)
- ->with([
- 'code' => $randomNumber,
- ]);
- }
- }
|