a4e27fdc90099be8298d0a31c66653c4215cda60
[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       mime_type => 'text/html', #multipart/alternative with a text part?
7                                   # cranky mutt/pine users like me are rare
8
9       _conf        => 'selfservice-password_reset_msgnum',
10       _insert_args => [ subject => '{ $company_name } password reset',
11                         body    => <<'END',
12 To complete your { $company_name } password reset, please go to
13 <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 />
14 <br />
15 This link will expire in 24 hours.<br />
16 <br />
17 If you did not request this password reset, you may safely ignore and delete this message.<br />
18 <br />
19 <br />
20 { $company_name } Support
21 END
22                       ],
23     },
24   ];
25 }
26
27 1;