При установке условия, выдает ошибку 500 server error
Ошибка в логах
prod.ERROR: Address in mailbox given [] does not comply with RFC 2822, 3.6.2. {"exception":"[object] (Swift_RfcComplianceException(code: 0): Address in mailbox given [] does not comply with RFC 2822, 3.6.2. at /var/www/vhosts/movewheels.com/httpdocs/external-form/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/Headers/MailboxHeader.php:355)
Код
public function build()
{
$entity = Entity::find($this->entityId);
if(isset($_COOKIE['utm_sources']) && $_COOKIE['utm_sources'] == 'google') {
return $this
->markdown('order_mail')
->from(env('MAIL_FROM_ADDRESS_UTM'), env('MAIL_FROM_NAME'))
->subject('Order from Movewheels.com')
->with([
'entity' => $entity
]);
}
else {
return $this
->markdown('order_mail')
->from(env('MAIL_FROM_ADDRESS'), env('MAIL_FROM_NAME'))
->subject('Order from Movewheels.com')
->with([
'entity' => $entity
]);
}
}