Файл: concrete5.7.5.6/concrete/mail/block_form_submission.php
Строк: 21
<?php
defined('C5_EXECUTE') or die("Access Denied.");
$submittedData='';
foreach($questionAnswerPairs as $questionAnswerPair){
$submittedData .= $questionAnswerPair['question']."rn".$questionAnswerPair['answerDisplay']."rn"."rn";
}
$formDisplayUrl=URL::to('/dashboard/reports/forms') . '?qsid='.$questionSetId;
$body = t("
There has been a submission of the form %s through your concrete5 website.
%s
To view all of this form's submissions, visit %s
", $formName, $submittedData, $formDisplayUrl);