Form submission text
Permalink
I have edited the file 'block_form_submission.php' in root/concrete/mail in order to change the text that appears in the body of the submission. When i test the form the text hasnt changed?
This is for C5 5.6.3.3
This is my edit:
This is for C5 5.6.3.3
This is my edit:
<?php defined('C5_EXECUTE') or die("Access Denied."); $submittedData=''; foreach($questionAnswerPairs as $questionAnswerPair){ $submittedData .= $questionAnswerPair['question']."\r\n".$questionAnswerPair['answerDisplay']."\r\n"."\r\n"; } $formDisplayUrl=BASE_URL.DIR_REL.'/' . DISPATCHER_FILENAME . '/dashboard/reports/forms/?qsid='.$questionSetId; $body = t(" New entry from %s on your website. %s To view visit %s ", $formName, $submittedData, $formDisplayUrl);