• Resolved Somnath Jadhav

    (@somnathjadhav)


    I have installed wordpress plugin AWPCP where visitors can post ads,edit ads,Search potential customers.My problem is that when someone register on my site, mails are going to their spam box. Now days very few people check spam box.Registered members on my site thinks that there is bug in my site that’s why they don’t get password.They leave my site,I am loosing my customers.Please help .How to prevent mails going to spam box??

Viewing 8 replies - 1 through 8 (of 8 total)
  • Hi there,

    You can solve this by using the WP Mail SMTP plugin.

    What the plugin does is it allows you to fill in your SMTP details so that it is send properly using the correct mail server instead of the hosted one.

    Try it and I hope it makes a difference. Remember to test it.

    And to make the email pretty, you can try to use WP Better Email ?? Wishing you the best for your business.

    Thread Starter Somnath Jadhav

    (@somnathjadhav)

    Hi,Thanks.Now mails are going from my email Id rather than wordpress.But mails are still going into spam.

    What are the steps should I take to avoid it??

    Thanks for your support!!!

    Hi there,

    Try to use a GMail account for the SMTP settings and see if that one works.

    This is what I use last time. I normally use Remote Mail Exchanger rather than the hosting email – stackoverflow post.

    Thread Starter Somnath Jadhav

    (@somnathjadhav)

    Thanks Friend…Finally I Could do it.It was never possible without your help.You really Saved me.I am happy.

    Thanks for your support [sig moderated as per the Forum Rules]

    Hi there,

    Glad it helped you. And wishing the best to you and your business.

    My email keeps on going to spam folder, I have wp-smtp installed but no luck. Here’s my code,

    wp-smtp settings https://postimg.org/image/yry5n2vuf/

    <?php 
    
    $Input = (object)$_GET;
    
    $Email = $Input->inf_field_Email;
    $FirstName = $Input->inf_field_FirstName;
    $LastName = $Input->inf_field_LastName;
    
    if ( ! email_exists( $Email )) {
     $Password = wp_generate_password( $length=12, $include_standard_special_chars=false );
     wp_create_user( $Email, $Password, $Email );
     $Domain =  preg_replace( "/^www\./" , "" , $_SERVER["SERVER_NAME"] );
     $Title = "Welcome : New Member";
     $Message = "Hi ". $FirstName .",\n \nTom Cronin here, co-founder of Science of Stillness. \n \nI just wanted to send you a quick message to welcome you to the Science of Stillness community! \n \n Thanks so much for putting your faith in us. \n \nTo get started, simply follow the access details you received in the order confirmation email. Along with the confirmation email, you should have also received a receipt from One Great Find. Save this with your records. \n \nI am ao so excited to have you on board John! \n \nSincerely, \n \nTom \n \nUsername: " . $Email . " \nPassword: " . $Password . " \nClick the following link to visit our member's area, https://stillnessproject.com/";
     $headers = "From: [email protected]\r\n";
     $headers .= "Reply-To: [email protected]\r\n";
     $headers .= "Return-Path: [email protected]\r\n";
     $headers .= "CC: {$Email}\r\n";
     $headers .= "BCC: {$Email}\r\n";
     wp_mail( $Email , $Title , $Message , $headers );
    }
    
    ?>

    [Moderator Note: Please post code & markup between backticks or use the code button. Your posted code may now have been permanently damaged by the forum’s parser.]

    When I used “Send all WordPress emails via SMTP.”

    I’m not receiving email.

    @prosarmientolou: If you require assistance then, as per the Forum Welcome, please post your own topic. First, identify which plugin you are using and then post in that plugin’s dedicated forum via its page in the Plugin Repository.

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘wordpress mails are going to spam’ is closed to new replies.