Skip to content
Calin Rada edited this page Oct 14, 2013 · 2 revisions

Email configuration

<?php
        'mail' => array(
                'fromName' => 'FROM_NAME',
                'fromEmail' => 'FROM_EMAIL',
                'smtp' => array(
                    'server' => 'SMTP_SERVER',
                    'port' => PORT_NUMBER,
                    'security' => 'tls', // Usually for gmail accounts
                    'username' => 'USERNAME',
                    'password' => 'PASSWORD',
                )
        )
?>
Clone this wiki locally