18 lines
486 B
PHP
18 lines
486 B
PHP
<?php
|
|
/*
|
|
$config['protocol'] = 'smtp';
|
|
$config['smtp_host'] = 'ssl://smtp.googlemail.com';
|
|
$config['smtp_port'] = '465';
|
|
$config['smtp_timeout'] = '7';
|
|
$config['smtp_user'] = 'robot@eastside.se';
|
|
$config['smtp_pass'] = '1122334455!!';
|
|
$config['charset'] = 'utf-8';
|
|
$config['newline'] = "\r\n";
|
|
$config['mailtype'] = 'html'; // or text
|
|
*/
|
|
$config['protocol'] = 'smtp';
|
|
$config['charset'] = 'utf-8';
|
|
$config['smtp_host'] = 'mailout.one.com';
|
|
$config['mailtype'] = 'html';
|
|
?>
|