Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
12345 anikendra 1
<?php
2
class EmailConfig{
3
    public $signMeUp = array(
4
        'activation_field' => 'activation_code',
5
        'useractive_field' => 'active',
6
        'login_after_activation' => false,
7
        'welcome_subject' => 'Welcome',
8
        'activation_subject' => 'Please Activate Your Account',
9
        'password_reset_field' => 'password_reset',
10
        'username_field' => 'username',
11
        'email_field' => 'email',
12
        'email_layout' => 'default',
13
        'password_field' => 'password',
14
        'from' => "admin@exampledomain.com",
15
        'layout' => 'default',
16
        'welcome_subject' => 'Welcome to MyDomain.com %username%!',
17
        'activation_subject' => 'Activate Your MyDomain.com Account %username%!',
18
        'sendAs' => 'html',//html
19
        'activation_template' => 'activate',
20
        'welcome_template' => 'welcome',
21
        'password_reset_template' => 'forgotten_password',
22
        'password_reset_subject' => 'Password Reset Request',
23
        'new_password_template' => 'recovered_password',
24
        'new_password_subject' => 'Your new Password',
25
        'transport' => 'Smtp',
26
        'from' => array('anikendra@copublish.in' => 'Anikendra at Copublish'),
27
        'host' => 'smtp.sendgrid.net',
28
        'port' => 587,
29
        'timeout' => 30,
30
        'username' => 'copublish',
31
        'password' => 'dihing232',
32
    );
33
 
34
    public $smtp = array(
35
        'transport' => 'Smtp',
36
        'from' => array('anikendra@copublish.in' => 'Anikendra at Copublish'),
37
        'host' => 'smtp.sendgrid.net',
38
        'port' => 587,
39
        'timeout' => 30,
40
        'username' => 'copublish',
41
        'password' => 'dihing232',
42
        'client' => null,
43
        'log' => false,
44
        'tls' => false,
45
        'sendAs' => 'html',//html
46
        //'charset' => 'utf-8',
47
        //'headerCharset' => 'utf-8',
48
    );
49
}
50
?>