Remove pagebreak fields in Drupal Webform submission email

1k Views Asked by At

I currently have the following as an output in my email, and wish to remove the pagebreaks from the email that gets sent.

Any idea what I need to put in webform-mail.tpl.php?

Application form completed on Wednesday, February 2, 2011 - 14:17 by 69.10.172.83

--Next--
--Next--
--Next--
--Next--
--Next--
Total: £0

Your personal reference number is: WSE93

EDIT

I have tried Ayush's solution in my theme template.php, plus webform-mail.tpl.php and webform.module to no success. ANyone have any ideas?

2

There are 2 best solutions below

2
On BEST ANSWER
<?php
function hook_webform_submission_render_alter(&$renderable) {
  // Remove page breaks from sent e-mails.
  if (isset($renderable['#email'])) {
    foreach (element_children($renderable) as $key) {
      if ($renderable[$key]['#component']['type'] == 'pagebreak') {
        unset($renderable[$key]);
      }
    }
  }
}
?>

see this

0
On

Well you need to put that in a custom module, like mymodule.module with the name mymodule_webform_submission_render_alter(&$renderable) to make it work.