Fix for footer font size in iOS mail

This commit is contained in:
Hillel Coren 2016-05-06 15:54:58 +03:00
parent 902827b7ac
commit 7296c15730

View File

@ -1180,7 +1180,7 @@ class Account extends Eloquent
// Add line breaks if HTML isn't already being used // Add line breaks if HTML isn't already being used
return strip_tags($this->email_footer) == $this->email_footer ? nl2br($this->email_footer) : $this->email_footer; return strip_tags($this->email_footer) == $this->email_footer ? nl2br($this->email_footer) : $this->email_footer;
} else { } else {
return "<p>" . trans('texts.email_signature') . "\n<br>\$account</p>"; return "<p><div>" . trans('texts.email_signature') . "\n<br>\$account</div></p>";
} }
} }