Welcome Guest, Not a member yet? Register   Sign In
Problem to send email to gmail adresse
#11

Please post the contents of your application/config/email.php file.
Reply
#12

I didn't have it, i had it with:
PHP Code:
<?php  if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/*
| -------------------------------------------------------------------
| EMAIL CONFING
| -------------------------------------------------------------------
| Configuration of outgoing mail server.
| */

$config['wordwrap'] = FALSE;
$config['mailtype'] = 'html';
$config['crlf'] = '\r\n';
$config['charset']='utf-8';
$config['newline']="\r\n";
$config['priority']=1;
$config['protocol']='smtp';
$config['smtp_host']='ssl://smtp.googlemail.com';
$config['smtp_port']='465';
$config['smtp_timeout']='30';
$config['smtp_user']='mymail';
$config['smtp_pass']='mypassword';
$config['newline']="\r\n";

/* End of file email.php */
/* Location: ./system/application/config/email.php */ 
Reply
#13

Now it works with email.php on application/ folder.
Reply
#14

I resolved this problem with a new email.php, now all email are sent.
Thank you for your help
Reply




Theme © iAndrew 2016 - Forum software by © MyBB