sending email using Xampp |
Use another SMTP
If you not using ssl in smtp host than you can use 567 smtp port $config = array( 'protocol' => 'smtp', 'smtp_host' => 'smtp.gmail.com', 'smtp_port' => 567, 'smtp_user' => '[email protected]', 'smtp_pass' => 'correo', ); If you are using ssl in smtp host than you can use 465 smtp port $config = array( 'protocol' => 'smtp', 'smtp_host' => 'ssl://smtp.gmail.com', 'smtp_port' => 465, 'smtp_user' => '[email protected]', 'smtp_pass' => 'correo', ); |
Messages In This Thread |
sending email using Xampp - by arugama - 12-28-2017, 02:30 PM
RE: sending email using Xampp - by XtreemDeveloper - 12-28-2017, 11:18 PM
RE: sending email using Xampp - by jreklund - 12-29-2017, 06:47 AM
RE: sending email using Xampp - by arugama - 12-29-2017, 07:21 AM
RE: sending email using Xampp - by jreklund - 12-29-2017, 07:47 AM
RE: sending email using Xampp - by arugama - 12-29-2017, 08:23 AM
RE: sending email using Xampp - by InsiteFX - 12-29-2017, 10:44 AM
|