Skip to content

Commit

Permalink
Fixed issue #09863: plain text email setting doesn't properly affect …
Browse files Browse the repository at this point in the history
…admin notification email

Dev: todo : move it to plugin ?
Dev: we can activate plugin by default in LS3
Dev: DB need big update (move whole text to plugin Survey settings)
  • Loading branch information
Shnoulle committed Sep 8, 2015
1 parent b0b5575 commit df55564
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions application/helpers/FrontEnd.php
Expand Up @@ -429,7 +429,7 @@ public static function sendSubmitNotifications($surveyid)
$sMessage = Replacements::templatereplace($thissurvey['email_admin_responses'], $aReplacementVars, $redata, null);
$sSubject = Replacements::templatereplace($thissurvey['email_admin_responses_subj'], $aReplacementVars, $redata, null);
foreach ($aEmailResponseTo as $sRecipient) {
if (!SendEmailMessage($sMessage, $sSubject, $sRecipient, $sFrom, $sitename, true,
if (!SendEmailMessage($sMessage, $sSubject, $sRecipient, $sFrom, $sitename, $bIsHTML,
getBounceEmail($surveyid), $aRelevantAttachments)
) {
if ($debug > 0) {
Expand Down Expand Up @@ -820,4 +820,4 @@ public static function resetTimers()
}


}
}

0 comments on commit df55564

Please sign in to comment.