관리-도구
편집 파일: SocialLoginDefaultPasswordMail.php
<?php namespace App\Mail; use App\Models\User; use Illuminate\Bus\Queueable; use Illuminate\Mail\Mailable; use Illuminate\Mail\Mailables\Content; use Illuminate\Mail\Mailables\Envelope; use Illuminate\Queue\SerializesModels; class SocialLoginDefaultPasswordMail extends Mailable { use Queueable, SerializesModels; public function __construct(private User $user, private string $password) { } /** * Get the message envelope. */ public function envelope(): Envelope { return new Envelope( subject: 'Social Login Default Password', ); } /** * Get the message content definition. */ public function content(): Content { return new Content( view: 'emails.password-mail', ); } /** * Get the attachments for the message. * * @return array<int, \Illuminate\Mail\Mailables\Attachment> */ public function attachments(): array { return []; } }