RafaelLetras Posted April 25, 2020 Report Share Posted April 25, 2020 (edited) Good morning , I setup my website with a a SSL certificated , I also tried all the tutorials that are on the forum But the phpvms isnt sending any emails , I tried from that email mail box to my personnal email and it's working I also tried setting up a php file for the email And I have an error , The website is full https:// compatible and everything is set correctly on local_app and util If you can help me Best Regards Rafa <?php ini_set( 'display_errors', 1 ); error_reporting( E_ALL ); $from = "no-reply@voloteavirtual.com"; $to = "myemail"; $subject = "PHP Mail Test script"; $message = "This is a test to check the PHP Mail functionality"; $headers = "From:" . $from; mail($to,$subject,$message, $headers); echo "Test email sent"; ?> ISSUE FIXED ( for the moment Edited April 25, 2020 by RafaelLetras Quote Link to comment Share on other sites More sharing options...
RafaelLetras Posted April 25, 2020 Author Report Share Posted April 25, 2020 FIXED ! Quote Link to comment Share on other sites More sharing options...
Moderators shakamonkey88 Posted April 25, 2020 Moderators Report Share Posted April 25, 2020 Then share what you did to fix it should others stumble upon this thread looking for an answer. Quote Link to comment Share on other sites More sharing options...
lorlandi Posted May 3, 2020 Report Share Posted May 3, 2020 Well, i had the same problem with mass email and contact email also, two weeks involved searching the solution and nothing. My email is from a telephone company and used for many years. The final solution to this issued was change the webmaster email and also my email to gmail account and all going well. At this time with many test all is full working. My local config as follow # Email Settings Config::Set('EMAIL_FROM_NAME', ''); Config::Set('EMAIL_FROM_ADDRESS', ''); Config::Set('EMAIL_USE_SMTP', false); # Add multiple SMTP servers by separating them with ; Config::Set('EMAIL_SMTP_SERVERS', ''); Config::Set('EMAIL_SMTP_PORT', '25'); Config::Set('EMAIL_SMTP_USE_AUTH', true); Config::Set('EMAIL_SMTP_SECURE', 'ssl'); # must be "ssl" for Google Apps Config::Set('EMAIL_SMTP_USER', ''); Config::Set('EMAIL_SMTP_PASS', ''); App config with no changes. Regards Luis 1 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.