Insert page title into block_form_submission.php

Permalink
Hello all and thanks in-advance,

I was wondering if it was possible to pull in the page title dynamically into the email you receive from submissions which is dependant on which page that form is on.

e.g. 5 copied stack forms across 5 contact forms the email submission would tell me which page the form has been sent from.

I guess you have to utilise - $c->getCollectionName()

But how?

For reference current codes below:

defined('C5_EXECUTE') or die("Access Denied.");
$submittedData='';
foreach($questionAnswerPairs as $questionAnswerPair){
   $submittedData .= $questionAnswerPair['question']."\r\n".$questionAnswerPair['answer']."\r\n"."\r\n";
} 
$formDisplayUrl=BASE_URL.DIR_REL.'/' . DISPATCHER_FILENAME . '/dashboard/reports/forms/?qsid='.$questionSetId;
$insure= $c->getCollectionName();
$body = t("
%s
%s
To view all of this form's submissions, visit %s 
", $formName, $insure, $submittedData, $formDisplayUrl);


Thanks
Tom

 
ncheese replied on at Permalink Reply
Solutions

$body = Page::getCurrentPage()->getCollectionName() . t("
maze replied on at Permalink Reply
Hi ncheese,

How did you achieve this? I've tried replacing the body line with the one you've listed above but it just makes my form hang.
PixelFields replied on at Permalink Reply
PixelFields
I managed to get this working in 5.7 using the following code for block_form_submission.php (I put the edited version in the application/mail folder).

<?php 
defined('C5_EXECUTE') or die("Access Denied.");
$c = Page::getCurrentPage();
$title = $c->getCollectionName();
$submittedData='';
foreach($questionAnswerPairs as $questionAnswerPair){
   $submittedData .= $questionAnswerPair['question']."\r\n".$questionAnswerPair['answerDisplay']."\r\n"."\r\n";
} 
$formDisplayUrl=URL::to('/dashboard/reports/forms') . '?qsid='.$questionSetId;
$body = t("
There has been a submission of the form %s on page %s through your concrete5 website.
%s
To view all of this form's submissions, visit %s 
", $formName, $title, $submittedData, $formDisplayUrl);