CodeIgniter Forums
problem to send mail suind xampp - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: CodeIgniter 4 (https://forum.codeigniter.com/forumdisplay.php?fid=28)
+--- Forum: CodeIgniter 4 Support (https://forum.codeigniter.com/forumdisplay.php?fid=30)
+--- Thread: problem to send mail suind xampp (/showthread.php?tid=77572)



problem to send mail suind xampp - meme1234 - 09-18-2020

I'm new, I need your help please.
I just started using CodeIgniter 4 and I tried to send email using smtp.
I configured everything but the email doesn't want to send an it gave an error message like

Unable to send email using PHP SMTP. Your server might not be configured to send mail using this method

$email = \Config\Services::email();

$config['mailPath'] = '/usr/sbin/sendmail';
$config['protocol'] = 'smtp';
$config['wordWrap'] = true;
$config['SMTPHost'] = 'smtp.gmail.com';
$config['SMTPUser'] = '';
$config['SMTPPass'] = '';
$config['SMTPCrypto'] = 'ssl';
$config['mailtype']    = "html";
        $config['charset']      = "utf-8";
$config['SMTPPort'] = 587;
$config['newline']  = "\r\n";

$email->initialize($config);
$email->setFrom('');
$email->setTo('');


please help


RE: problem to send mail suind xampp - InsiteFX - 09-18-2020

You need to install an email server with xampp now.

You use to be able to use sendmail but they took it out so far as I know.

You could try using your internet service providers smtp or gmail smtp.