PHPVMS email not working

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 = "[email protected]"; $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

FIXED ! 

Then share what you did to fix it should others stumble upon this thread looking for an answer.

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 Like