Remove hard coded booking summary from payment reminder email

This commit is contained in:
2014-01-17 23:07:43 +11:00
parent 5c81fa6cf6
commit 75c16192eb

View File

@@ -144,8 +144,7 @@ function _booking_balance_payment_email($nid)
$params['subject'] = $subject; $params['subject'] = $subject;
//retrieve the body of the email //retrieve the body of the email
$params['body'] = token_replace(variable_get('booking_email_paymentoutstanding_text'), $tokens) . $params['body'] = token_replace(variable_get('booking_email_paymentoutstanding_text'), $tokens);
"\n\n" . t("!details", array('!details' => _booking_details_email_summary($node)));
//send the email //send the email
drupal_mail('booking', 'registration_mail_bal_outstanding', $to, $language, $params, $from); drupal_mail('booking', 'registration_mail_bal_outstanding', $to, $language, $params, $from);