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/15060.up

34 lines
1.2 KiB

USE billing;
ALTER TABLE contracts
ADD COLUMN invoice_email_template_id int(11) unsigned DEFAULT NULL;
ALTER TABLE email_templates modify reseller_id int(11) unsigned;
insert into email_templates (reseller_id,name,from_email,subject,body)values(null,'subscriber_default_email','default@sipwise.com','Subscriber created',
'Dear Customer,
A new subscriber [% subscriber %] has been created for you.
Your faithful Sipwise system
--
This is an automatically generated message. Do not reply.');
insert into email_templates (reseller_id,name,from_email,subject,body)values(null,'passreset_default_email','default@sipwise.com','Password reset email',
'Dear Customer,
Please go to [% url %] to set your password and log into your self-care interface.
Your faithful Sipwise system
--
This is an automatically generated message. Do not reply.');
insert into email_templates (reseller_id,name,from_email,subject,body)values(null,'invoice_default_email','default@sipwise.com','Invoice',
'Invoice #[%invoice.serial%] | Dear Customer,
Please find your invoice #[%invoice.serial%] for [%invoice.month%], [%invoice.year%] in attachment of this letter.
Your faithful Sipwise system
--
This is an automatically generated message. Do not reply.');