Subversion Repositories SmartDukaan

Rev

Rev 13714 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
13532 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@hotbhojpuri.in",
15
        'layout' => 'default',
16
        'welcome_subject' => 'Welcome to LetUsHaggle.com %username%!',
17
        'activation_subject' => 'Activate Your LetUsHaggle.com Account %username%!',
18
        'sendAs' => 'text',//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('admin@hotbhojpuri.in' => 'Admin at LetUsHaggle'),
27
        'host' => 'smtp.mandrillapp.com',
28
        'port' => 587,
29
        'timeout' => 30,
30
        'layout' => 'default',
31
        'username' => 'anikendra@gmail.com',
32
        'password' => 'ShXC1HNT1JlbmrX0c1uBDQ',
33
    );
34
 
35
    public $smtp = array(
36
        'transport' => 'Smtp',
37
        'from' => array('admin@hotbhojpuri.in' => 'Admin at LetUsHaggle'),
38
        'host' => 'smtp.mandrillapp.com',
39
        'port' => 587,
40
        'timeout' => 30,
41
        'layout' => 'default',
42
        'username' => 'anikendra@gmail.com',
43
        'password' => 'ShXC1HNT1JlbmrX0c1uBDQ',
44
        'client' => null,
45
        'log' => false,
46
        'tls' => false
47
        //'charset' => 'utf-8',
48
        //'headerCharset' => 'utf-8',
49
    );
50
}