From 3d8a8fbf5545ac1ac982aea28177ac0d60934d9e Mon Sep 17 00:00:00 2001 From: Irina Peshinskaya Date: Fri, 13 Jun 2014 08:51:08 +0300 Subject: [PATCH] MT#5879 Change default invoice email template. --- db_scripts/diff/15070.up | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 db_scripts/diff/15070.up diff --git a/db_scripts/diff/15070.up b/db_scripts/diff/15070.up new file mode 100644 index 00000000..11e871b3 --- /dev/null +++ b/db_scripts/diff/15070.up @@ -0,0 +1,11 @@ +USE billing; +update email_templates set subject = 'Invoice #[%invoice.serial%] from [%invoice.period_start_obj.ymd%] to [%invoice.period_end_obj.ymd%]', +body = 'Dear Customer, + +Please find your invoice #[%invoice.serial%] for [%invoice.period_start_obj.month_name%], [%invoice.period_start_obj.year%] in attachment of this letter. + +Your faithful Sipwise system + +-- +This is an automatically generated message. Do not reply.' +where name = 'invoice_default_email' and reseller_id is null;