forked from science-ation/science-ation
17 lines
559 B
MySQL
17 lines
559 B
MySQL
|
INSERT INTO `emails` (
|
||
|
`id` ,
|
||
|
`val` ,
|
||
|
`name` ,
|
||
|
`description` ,
|
||
|
`from` ,
|
||
|
`subject` ,
|
||
|
`body` ,
|
||
|
`bodyhtml` ,
|
||
|
`type` ,
|
||
|
`fundraising_campaigns_id` ,
|
||
|
`lastsent`
|
||
|
)
|
||
|
VALUES (
|
||
|
NULL , 'account_recover_password', 'Account - Recover Password', 'Recover the password for an account if they submit a ''forgot password'' request', '', 'Password Recovery for [FAIRNAME]', 'We have received a request for the recovery of your password from this email address. Please find your login information below: User Name: [USERNAME] Password: [PASSWORD] ', '', 'system', NULL , NULL
|
||
|
);
|