Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Task/lb 132 encoding problems with the body of notification emails #3775

Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions application/libraries/Save.php
Original file line number Diff line number Diff line change
Expand Up @@ -211,11 +211,11 @@ function saveSurvey()
$mailer->emailType = 'savesurveydetails';
$mailer->isHTML(false);
$mailer->Subject = gT("Saved Survey Details") . " - " . $thissurvey['name'];
$message = gT("Thank you for saving your survey in progress. The following details can be used to return to this survey and continue where you left off. Please make sure to remember your password - we cannot retrieve it for you.");
$message = gT("Thank you for saving your survey in progress. The following details can be used to return to this survey and continue where you left off. Please make sure to remember your password - we cannot retrieve it for you.", "unescaped");
$message .= "\n\n" . $thissurvey['name'] . "\n\n";
$message .= gT("Name") . ": " . Yii::app()->getRequest()->getPost('savename') . "\n";
c-schmitz marked this conversation as resolved.
Show resolved Hide resolved
$message .= gT("Password") . ": ***************\n\n";
$message .= gT("Reload your survey by clicking on the following link (or pasting it into your browser):") . "\n";
$message .= gT("Reload your survey by clicking on the following link (or pasting it into your browser):", "unescaped") . "\n";
$aParams = array('scid' => $scid, 'lang' => App()->language);
if (!empty($clienttoken)) {
$aParams['token'] = $clienttoken;
Expand Down