Jump to content

PHPVMS email not working


RafaelLetras

Recommended Posts

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 by RafaelLetras
Link to comment
Share on other sites

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

  • Like 1
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...