Auto email people moving from bookedin/waiting list to not-coming list
This commit is contained in:
@@ -88,7 +88,7 @@ function booking_tokens_admin() {
|
||||
"and you will not receive the confirmation email until that has occurred.\n" .
|
||||
"Please don't hesitate to contact us if you have any queries by replying to this email. We look forward to seeing you, God Willing, at [booking:eventname]\n" .
|
||||
"Love in Jesus,\n[booking:eventname] Registrations Team.";
|
||||
|
||||
$booking_email_notcoming_demotion = "";
|
||||
$booking_confirmation_text = "<p>Thanks for filling out the registration form.</p>\n" .
|
||||
"<p>To complete your booking, please make a payment of <strong>$[booking:payment-required]</strong> into the following bank account<br />\n" .
|
||||
" Account Name: blah<br />\n BSB: blah<br />\n Account Number: blah</p>\n" .
|
||||
@@ -321,6 +321,20 @@ $booking_registration_intro_text = variable_get('booking_registration_intro_text
|
||||
'#description' => t(''),
|
||||
'#default_value' => variable_get('booking_email_waitinglistpromotion', $booking_email_waitinglistpromotion),
|
||||
);
|
||||
$form['emails']['booking_email_notcoming_demotion_subject'] = array (
|
||||
'#type' => 'textfield',
|
||||
'#title' => t('Subject line for email advising attendee their withdrawal has been processed'),
|
||||
'#size' => 150,
|
||||
'#maxlength' => 300,
|
||||
'#default_value' => variable_get('booking_email_notcoming_demotion_subject','[booking:eventname] withdrawal processed'),
|
||||
);
|
||||
$form['emails']['booking_email_notcoming_demotion'] = array(
|
||||
'#title' => t('Email text to send a person who withdraws their registration'),
|
||||
'#type' => 'textarea',
|
||||
'#description' => t(''),
|
||||
'#default_value' => variable_get('booking_email_notcoming_demotion', $booking_email_notcoming_demotion),
|
||||
);
|
||||
|
||||
|
||||
//add a bunch of custom emails
|
||||
for ($i = 1; $i <= CUSTOM_EMAIL_COUNT; $i++)
|
||||
|
Reference in New Issue
Block a user