Merge branch 'master' of git.freeside.biz:/home/git/freeside
[freeside.git] / FS / FS / msg_template / InitialData.pm
1 package FS::msg_template::InitialData;
2
3 sub _initial_data {
4   [
5     { msgname   => 'Password reset',
6       msgclass  => 'email',
7       mime_type => 'text/html', #multipart/alternative with a text part?
8                                   # cranky mutt/pine users like me are rare
9
10       _conf        => 'selfservice-password_reset_msgnum',
11       _insert_args => [ subject => '{ $company_name } password reset',
12                         body    => <<'END',
13 To complete your { $company_name } password reset, please go to
14 <a href="{ $selfservice_server_base_url }/selfservice.cgi?action=process_forgot_password_session_{ $session_id }">{ $selfservice_server_base_url }/selfservice.cgi?action=process_forgot_password_session_{ $session_id }</a><br />
15 <br />
16 This link will expire in 24 hours.<br />
17 <br />
18 If you did not request this password reset, you may safely ignore and delete this message.<br />
19 <br />
20 <br />
21 { $company_name } Support
22 END
23                       ],
24     },
25   ];
26 }
27
28 1;