Can't send email - php

I tried to send mail using the email class of CodeIgniter, but it is showing some errors:
fsockopen() [function.fsockopen]: unable to connect to
ssl://smtp.googlemail.com:465 (Unable to find the socket transport
"ssl" - did you forget to enable it when you configured PHP?)
My code is here:
$config['protocol'] = 'smtp';
$config['smtp_host'] = 'ssl://smtp.googlemail.com';
$config['smtp_port'] = 465;
$config['smtp_user'] = 'myemail.world2010#gmail.com';
$config['smtp_pass'] = 'email';
$this->load->library('email');
$this->email->initialize($config);
$this->email->set_newline("\r\n");
$message="
username:{$this->input->post('username')}
password:{$this->input->post('password')}
";
$this->email->from('sagar.world2010#gmail.com','Admin');
$this->email->to($this->input->post('email'));
$this->email->subject('Activation Message');
$this->email->message($message);
$this->email->send();
echo $this->email->print_debugger();
I also changed the php.ini file and pasted extension=php_openssl.dll in it, but it still does not work.

The smtp server from gmail is smtp.gmail.com
so your configuration should be:
$config['protocol'] = 'smtp';
$config['smtp_host'] = 'ssl://smtp.gmail.com';
$config['smtp_port'] = 465;
$config['smtp_user'] = 'myemail.world2010#gmail.com';
$config['smtp_pass'] = 'email';
but I'm not sure if smtp_host need the 'ssl://' part

Related

Codeigniter Amazon SES SMTP Connect Error

I want to send email using Amazon SES in Codeigniter, i have tried everything, i also tried the earlier questions asked on codeigniter too, but i am not able to find the solution for this.
public function add_applicants()
{
$this->load->model('visa/India_model');
$datan = $this->India_model->insertappdata();
$appid = $datan[appid];
$this->load->library('email');
$config['protocol'] = 'smtp';
$config['charset'] = 'ISO-8859-1';
$config['mailtype'] = 'html';
$config['smtp_host'] = "ssl://email-smtp.eu-west-1.amazonaws.com";
$config['smtp_user'] = "SMTP USER SES";
$config['smtp_pass'] = "SMTP Password SES";
$config['smtp_port'] = "465";
$config['newline'] = "\r\n";
$config['mailsender'] = "support#indiaevisaservice.com";
$config['smtp_crypto'] = 'tls';
$this->email->initialize($config);
$this->email->print_debugger();
$this->email->from('support#verfiedemail.com', 'GYEV Experts');
$this->email->to('imthegrv#gmail.com', 'Test To');
$this->email->subject('Test');
$this->email->message('test');
if($this->email->send()):
print_r($appid);
else:
print_r($this->email->print_debugger());
endif;
}
i am getting error
SMTP connect() failed. https://github.com/PHPMailer/PHPMailer/wiki/Troubleshooting
You didn't follow the link provided in the error message, which provides tests that you can use to diagnose your problem.
These three lines are inconsistent:
$config['smtp_host'] = "ssl://email-smtp.eu-west-1.amazonaws.com";
$config['smtp_port'] = "465";
$config['smtp_crypto'] = 'tls';
tls mode will not work on port 465. That should be ssl. Alternatively, change port to 587, and it should be an integer, not a string. There's also no need for the ssl:// prefix on your host; that just adds confusion. First step, change them to this:
$config['smtp_host'] = 'email-smtp.eu-west-1.amazonaws.com';
$config['smtp_port'] = 465;
$config['smtp_crypto'] = 'ssl';
You may still have other issues (e.g. your ISP may block outbound SMTP connections), but there are many other tests listed in the guide that will help you diagnose that.

Failed to send AUTH LOGIN command. Error: 504 5.7.4 Unrecognized authentication type - office365

I have the following code for sending email using codeigniter email library using SMTP using office365 SMTP
$this->load->library('email');
$config['protocol'] = 'smtp';
$config['smtp_host'] = 'smtp.office365.com';
$config['smtp_user'] = 'xxxxxx#example.com';
$config['smtp_pass'] = '123456';
$config['mailtype'] = 'html';
$config['charset'] = 'utf-8';
$config['newline'] = "\r\n";
$config['smtp_port'] = 587;
$config['smtp_timeout'] = 60;
$config['smtp_crypto'] = 'tls';
$config['mailtype'] = 'html';
$this->email->initialize($config);
$this->email->from('xxxxxx#example.com');
$this->email->to('test123#gmail.com');
$this->email->subject('Email Test');
$this->email->message('Testing the email class.');
$this->email->set_mailtype('html');
$this->email->set_newline("\r\n");
$this->email->send();
And it shows an error
Failed to send AUTH LOGIN command. Error: 504 5.7.4 Unrecognized
authentication type [SG2PR0601CA0010.apcprd06.prod.outlook.com]
Unable to send email using PHP SMTP. Your server might not be
configured to send mail using this method.
In office365,shows configuration like bellow
NOTE: It is using office365 SMTP not gmail
Just use this line of code in your config file code:
$config['protocol'] = 'sendmail';
instead of
$config['protocol'] = 'smtp';
Hopefully, it will solve the error.

PHPMailer SMTP connect() failed. How to resolve?

Codeigniter Config:
$config['useragent'] = 'PHPMailer'; // Mail engine switcher: 'CodeIgniter' or 'PHPMailer'
$config['protocol'] = 'smtp'; // 'mail', 'sendmail', or 'smtp'
$config['mailpath'] = '/usr/sbin/sendmail';
$config['smtp_host'] = 'smtp.gmail.com';
$config['smtp_user'] = 'shahrushabh1996#gmail.com';
$config['smtp_pass'] = '####';
$config['smtp_port'] = 465;
Codeigniter Controller:
$this->load->library('email');
$this->email->from('shahrushabh1996#gmail.com', 'Webers Infotech');
$this->email->to('shahrushabh1996#gmail.com','Rushabh Shah');
$this->email->subject('Your Subject');
$this->email->message('Your Message');
if (!$this->email->send()) {
show_error($this->email->print_debugger());
}
Can anyone please tell me How can I resolve this issue? Why is it not working?
You can check with the following code:
$this->load->library('email');
$config['protocol'] = 'smtp';
$config['smtp_host'] = 'smtp.app.com'; // if via gmail 'ssl://smtp.googlemail.com';
$config['smtp_user'] = 'email#dmail.com';
$config['smtp_pass'] = 'smtp password';
$config['smtp_port'] = port number;
$config['starttls'] = TRUE;
$this->email->initialize($config);
$this->email->from('youremail#domain.com');
$this->email->to('to#domain.com');
$this->email->subject('testing');
$this->email->message('Message content');
if($this->email->send()) {
echo 'Message has been sent';
} else {
$this->email->print_debugger();
}
Also check the php_smtp.dll . Is that available or not.
To check that you can use
<?php
phpinfo();
?>
If not found then check on php.ini file and there should be a line as
;extension=php_extname.dll
just remove the ; from this line and restart php service ( restart Apache ).

Using Gmail smtp service

I am trying to send email from my server with gmail smtp. I am using following code:
$mesaj=$this->load->view('main/mail.php',$token,true);
$config['protocol'] = 'smtp';
$config['wordwrap'] = FALSE;
$config['charset'] = 'utf-8';
$config['mailtype'] = 'html';
$config['smtp_host'] = 'smtp.gmail.com';
$config['smtp_user'] = 'info#site.com';
$config['smtp_pass'] = 'password';
$config['smtp_port'] = '465';
$this->load->library('email');
$this->email->initialize($config);
$this->email->from('info#site.com');
$this->email->to($email);
$this->email->subject('Subject');
$this->email->message($mesaj);
$this->email->send();
echo $this->email->print_debugger();
But I am getting following error:
SMTP ERROR OCCURED. AUTH LOGIN COMMAND COULD NOT SEND
I have no SSL certificate on my server. Is this could be the problem ? How can I resolve this problem ?
The port 465 is reserved for SSL requests on the smtp.gmail.com server.
It doesn't look like you specified the authorization method here (none / ssl / tsl).
I'm not too familiar with PHP, so I don't know exactly how you'd set it...

Failed to send AUTH LOGIN command. Error: 530 5.7.0 Must issue a STARTTLS command first

I am having the following code
ini_set("SMTP","ssl://smtp.gmail.com");
ini_set("smtp_port","587");
$config['protocol'] = 'smtp';
$config['smtp_host'] = 'smtp.gmail.com';
$config['smtp_port'] = '587';
$config['_smtp_auth']=TRUE;
$config['smtp_user'] = 'sender#gmail.com';
$config['smtp_pass'] = 'password';
$config['smtp_timeout'] = '60';
$config['charset'] = 'utf-8';
$config['wordwrap'] = TRUE;
$config['mailtype'] = "html";
$this->email->initialize($config);
$this->email->from('sender#gmail.com', 'Sender');
$this->email->to('receiver#gmail.com');
$this->email->subject('This is my subject');
$this->email->message('This is the content of my message');
if ( ! $this->email->send())
{
show_error($this->email->print_debugger());
}
else
{
echo('DONE');
}
But when the code executes, I am getting the following error
Failed to send AUTH LOGIN command. Error: 530 5.7.0 Must issue a STARTTLS command first. qd9sm8462833pbb.31
I have used
$this->load->library('email');
in my controller's constructor. But I am unable to send email from localhost. What can be the solution to send email? What changes do I need to make?
$config['protocol'] = 'smtp';
$config['smtp_host'] = 'ssl://smtp.gmail.com';
$config['smtp_port'] = '465';
I think you should set "Enable IMAP" option in your Gmail account.
It is in the Mail options.
And change your port to 465 ...
$config['smtp_port'] = '587';
to
$config['smtp_port'] = '465';
Add:
$config['smtp_crypto'] = 'tls'; // or html

Categories