From 75c16192eb2f0502e5176245945d1946d046873b Mon Sep 17 00:00:00 2001 From: Nathan Coad Date: Fri, 17 Jan 2014 23:07:43 +1100 Subject: [PATCH] Remove hard coded booking summary from payment reminder email --- booking.emails.inc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/booking.emails.inc b/booking.emails.inc index 31d2161..0761c89 100644 --- a/booking.emails.inc +++ b/booking.emails.inc @@ -144,8 +144,7 @@ function _booking_balance_payment_email($nid) $params['subject'] = $subject; //retrieve the body of the email - $params['body'] = token_replace(variable_get('booking_email_paymentoutstanding_text'), $tokens) . - "\n\n" . t("!details", array('!details' => _booking_details_email_summary($node))); + $params['body'] = token_replace(variable_get('booking_email_paymentoutstanding_text'), $tokens); //send the email drupal_mail('booking', 'registration_mail_bal_outstanding', $to, $language, $params, $from);