You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
db-schema/db_scripts/diff/15070.up

12 lines
487 B

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;