-
My site builder is sending emails to spam including emails that are sent using the contact forms. How can I change that? Its using the php send function.
$config['useragent'] = 'CodeIgniter';
$config['protocol'] = 'sendmail';
//$config['protocol'] = 'smtp';
//$config['mailpath'] = '/usr/sbin/sendmail';
//$config['smtp_host'] = 'ssl://smtp.gmail.com';
//$config['smtp_user'] = 'username';
//$config['smtp_pass'] = 'password';
//$config['smtp_port'] = '465';
//$config['smtp_timeout'] = 5;
//$config['smtp_keepalive'] = FALSE;
//$config['smtp_crypto'] = 'ssl';
//$config['wordwrap'] = TRUE;
//$config['wrapchars'] = 76;
$config['mailtype'] = 'html';
//$config['validate'] = FALSE;
//$config['priority'] = 3;
//$config['crlf'] = "";
//$config['newline'] = "";
//$config['charset'] = "utf-8";
//$config['bcc_batch_mode'] = FALSE;
//$config['bcc_batch_size'] = 200;
//$config['dsn'] = FALSE;How can I configure it to use smtp?
The topic ‘Keeps sending to spam’ is closed to new replies.