Fix for Reply To Name
This commit is contained in:
parent
d18e1d7436
commit
717fcc4b20
1 changed files with 1 additions and 1 deletions
|
|
@ -74,7 +74,7 @@ class NinjaMailerJob implements ShouldQueue
|
|||
|
||||
if (strlen($this->nmo->settings->reply_to_email) > 1) {
|
||||
|
||||
$reply_to_name = strlen($this->nmo->settings->reply_to_email) > 1 ? $this->nmo->settings->reply_to_email : $this->nmo->company->present()->name();
|
||||
$reply_to_name = strlen($this->nmo->settings->reply_to_name) > 1 ? $this->nmo->settings->reply_to_name : $this->nmo->company->present()->name();
|
||||
$this->nmo->mailable->replyTo($this->nmo->settings->reply_to_email, $reply_to_name);
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue