TT#76108 - Create admin password reset email template

Change-Id: Ib2c3c2b610c7675f1739dfde4d4520539551c962
(cherry picked from commit 7cb5c880cf)
changes/38/40738/1
Flaviu Mates 5 years ago
parent 4f965a823f
commit 7ae823f74e

@ -0,0 +1,8 @@
use billing;
set autocommit=0;
DELETE from email_templates
WHERE reseller_id IS NULL
AND name = 'admin_passreset_default_email';
commit;

@ -0,0 +1,17 @@
use billing;
set autocommit=0;
INSERT INTO email_templates (reseller_id, name, from_email, subject, body)
VALUES
(NULL, 'admin_passreset_default_email', 'default@sipwise.com',
'Password reset email',
'Dear Customer,
Please go to [% url %] to set your password and log into your admin interface.
Your faithful Sipwise system
--
This is an automatically generated message. Do not reply.');
commit;
Loading…
Cancel
Save