• Resolved Marc2412

    (@marc2412)


    Dear whom it may concern,

    Recently after the 4.4 update I do not receive any emails.

    Apparently, the only way to fix this error is to change the “From” settings in your contact form to have the senders address to be your own email address or another email address from your web server.

    I have created an email from the host with my domain name, yet this still does not work.

    What could be causing the problem?

    https://www.ads-software.com/plugins/contact-form-7/

Viewing 2 replies - 46 through 47 (of 47 total)
  • Hi!

    Here is the solution. You have to make a txt file with these code:

    <?php
    /*
    Plugin Name: Email Return Path Fix
    Author: Abdussamad Abdurrazzaq
    */
    class email_return_path
    {
    function __construct()
    {
    add_action( ‘phpmailer_init’, array( $this, ‘fix’ ) );
    }
    function fix( $phpmailer )
    {
    $phpmailer->Sender = $phpmailer->From;
    }
    }
    new email_return_path();
    ?>

    Save and rename a .php file format.
    Copy in your wp-content/plugins folder and activate the plugin in the WordPress admin.

    A good advice: Never use the second email sender option in Contact Form 7. There is a SPAM possibility

    Hi!

    Here is the solution. You have to make a txt file with these code:

    <?php
    /*
    Plugin Name: Email Return Path Fix
    Author: Abdussamad Abdurrazzaq
    */
    class email_return_path
    {
    function __construct()
    {
    add_action( ‘phpmailer_init’, array( $this, ‘fix’ ) );
    }
    function fix( $phpmailer )
    {
    $phpmailer->Sender = $phpmailer->From;
    }
    }
    new email_return_path();
    ?>

    Save and rename the file to .php file format.
    Copy in your wp-content/plugins folder and activate the plugin in the WordPress admin.

    A good advice: Never use the second email sender option in Contact Form 7. There is a SPAM possibility

    • This reply was modified 7 years, 9 months ago by zsoltbarabas.
Viewing 2 replies - 46 through 47 (of 47 total)
  • The topic ‘Emails not sending’ is closed to new replies.