mirror of https://github.com/sipwise/db-schema.git
Change-Id: Ib2c3c2b610c7675f1739dfde4d4520539551c962 (cherry picked from commitchanges/39/40739/17cb5c880cf) (cherry picked from commit7ae823f74e)
parent
897499ade5
commit
446498a40d
@ -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…
Reference in new issue