| 12345 |
anikendra |
1 |
<?php
|
|
|
2 |
|
|
|
3 |
$config['SignMeUp'] = array(
|
|
|
4 |
'sendAs' => 'html',//html
|
|
|
5 |
'activation_field' => 'activation_code',
|
|
|
6 |
'useractive_field' => 'active',
|
|
|
7 |
'login_after_activation' => false,
|
|
|
8 |
'welcome_subject' => 'Welcome',
|
|
|
9 |
'activation_subject' => 'Please Activate Your Account',
|
|
|
10 |
'password_reset_field' => 'password_reset',
|
|
|
11 |
'username_field' => 'username',
|
|
|
12 |
'email_field' => 'email',
|
|
|
13 |
'email_layout' => 'default',
|
|
|
14 |
'password_field' => 'password',
|
|
|
15 |
'activation_template' => 'activate',
|
|
|
16 |
'welcome_template' => 'welcome',
|
|
|
17 |
'password_reset_template' => 'forgotten_password',
|
|
|
18 |
'password_reset_subject' => 'Password Reset Request',
|
|
|
19 |
'new_password_template' => 'recovered_password',
|
|
|
20 |
'new_password_subject' => 'Your new Password',
|
|
|
21 |
'transport' => 'Smtp',
|
|
|
22 |
'from' => array('anikendra@copublish.in' => 'Anikendra at Copublish'),
|
|
|
23 |
'host' => 'smtp.sendgrid.net',
|
|
|
24 |
'port' => 587,
|
|
|
25 |
'timeout' => 30,
|
|
|
26 |
'username' => 'copublish',
|
|
|
27 |
'password' => '',
|
|
|
28 |
);
|
|
|
29 |
?>
|