-
Notifications
You must be signed in to change notification settings - Fork 149
Open
Description
$mail = new Mail;
$mail->using($refreshToken)->to($fields['email'])
->from('[email protected]', 'Paul Vincent Sumalinog')
->subject('Verification Code');
dd($mail->send()); //whenver this code hits it will throw 500
$mail->using($refreshToken)->to($fields['email'])
->from(env('MAIL_FROM_ADDRESS'), env('MAIL_FROM_NAME'))
->subject('Verification Code')
->markdown('mail.send-code', [
'emailVerification' => $emailVerification,
]) // π use string
->send();
Metadata
Metadata
Assignees
Labels
No labels