Remove email fix from master

This commit is contained in:
Hillel Coren 2018-09-19 23:41:30 +03:00
parent 211b01406e
commit 9ecff34cb4
2 changed files with 2 additions and 2 deletions

View File

@ -1580,7 +1580,7 @@ class Account extends Eloquent
*/ */
public function getEmailDesignId() public function getEmailDesignId()
{ {
return $this->hasFeature(FEATURE_CUSTOM_EMAILS) ? $this->account_email_settings->email_design_id : EMAIL_DESIGN_PLAIN; return $this->hasFeature(FEATURE_CUSTOM_EMAILS) ? $this->email_design_id : EMAIL_DESIGN_PLAIN;
} }
/** /**

View File

@ -64,7 +64,7 @@ trait SendsEmails
$template = '<div>$client,</div><br />'; $template = '<div>$client,</div><br />';
if ($this->hasFeature(FEATURE_CUSTOM_EMAILS) && $this->account_email_settings->email_design_id != EMAIL_DESIGN_PLAIN) { if ($this->hasFeature(FEATURE_CUSTOM_EMAILS) && $this->email_design_id != EMAIL_DESIGN_PLAIN) {
$template .= '<div>' . trans("texts.{$entityType}_message_button", ['amount' => '$amount']) . '</div><br />' . $template .= '<div>' . trans("texts.{$entityType}_message_button", ['amount' => '$amount']) . '</div><br />' .
'<div style="text-align:center;">$viewButton</div><br />'; '<div style="text-align:center;">$viewButton</div><br />';
} else { } else {