laravel-gmail icon indicating copy to clipboard operation
laravel-gmail copied to clipboard

Cannot set From header

Open re1naldo opened this issue 2 years ago • 0 comments

From header doesn't change when it is set using from method:

$mail = new Mail;
$mail->using('token.json');
$mail->from($senderEmail, $senderName);
$mail->to($userEmail, $userName);

I also tried to use setHeader, but it didn't work, either. $mail->setHeader('From', $senderEmail);

How to change From header in the generated email?

re1naldo avatar May 06 '22 16:05 re1naldo