Added option to include notify email address as BCC

This commit is contained in:
2015-09-12 09:38:28 +10:00
parent e6fa6f0ee5
commit 97bd469d98
3 changed files with 82 additions and 15 deletions

View File

@@ -231,6 +231,13 @@ function booking_admin() {
'#options' => array (0 => t('No'), t('Yes')),
'#default_value' => variable_get('booking_auto_workflow_email', 0),
);
$form['misc']['booking_bcc_notify_email_workflow'] = array (
'#type' => 'radios',
'#title' => t('Include notification email address on outgoing workflow emails?'),
'#description' => t('Send a BCC of any workflow email generated to the notification email address as well'),
'#options' => array (0 => t('No'), t('Yes')),
'#default_value' => variable_get('booking_bcc_notify_email_workflow', 0),
);
$form['misc']['booking_auto_show_on_lists'] = array (
'#type' => 'radios',
'#title' => t('Show on lists once booked in?'),