From 7296c157307e1a2892c715eb72fa21f417e6696e Mon Sep 17 00:00:00 2001 From: Hillel Coren Date: Fri, 6 May 2016 15:54:58 +0300 Subject: [PATCH] Fix for footer font size in iOS mail --- app/Models/Account.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Models/Account.php b/app/Models/Account.php index 92e2a623ff7b..952dd97cec5d 100644 --- a/app/Models/Account.php +++ b/app/Models/Account.php @@ -1180,7 +1180,7 @@ class Account extends Eloquent // 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; } else { - return "

" . trans('texts.email_signature') . "\n
\$account

"; + return "

" . trans('texts.email_signature') . "\n
\$account

"; } }