aDriv4 - MANAGER
Edit File: webform-mail.tpl.php
<?php /** * @file * Customize the e-mails sent by Webform after successful submission. * * This file may be renamed "webform-mail-[nid].tpl.php" to target a * specific webform e-mail on your site. Or you can leave it * "webform-mail.tpl.php" to affect all webform e-mails on your site. * * Available variables: * - $node: The node object for this webform. * - $submission: The webform submission. * - $email: The entire e-mail configuration settings. * - $user: The current user submitting the form. Always the Anonymous user * (uid 0) for confidential submissions. * - $ip_address: The IP address of the user submitting the form or '(unknown)' * for confidential submissions. * * The $email['email'] variable can be used to send different e-mails to * different users when using the "default" e-mail template. */ ?> <?php print ($email['html'] ? '<p>' : '') . t('Submitted on [submission:completed_date:long]') . ($email['html'] ? '</p>' : ''); ?> <?php if ($user->uid): ?> <?php print ($email['html'] ? '<p>' : '') . t('Submitted by user: [submission:user]') . ($email['html'] ? '</p>' : ''); ?> <?php else: ?> <?php print ($email['html'] ? '<p>' : '') . t('Submitted by anonymous user: [submission:ip-address]') . ($email['html'] ? '</p>' : ''); ?> <?php endif; ?> <?php print ($email['html'] ? '<p>' : '') . t('Submitted values are:') . ($email['html'] ? '</p>' : ''); ?> [submission:values] <?php print ($email['html'] ? '<p>' : '') . t('The results of this submission may be viewed at:') . ($email['html'] ? '</p>' : ''); ?> <?php print ($email['html'] ? '<p>' : ''); ?>[submission:url]<?php print ($email['html'] ? '</p>' : ''); ?>