Viewing 1 replies (of 1 total)
  • Plugin Author pantherius

    (@pantherius)

    Hello,

    Some hosting companies requires special header to send out emails.
    You may open the settings.php in the plugin’s folder, then locate the following on line 184:

    if (wp_mail($form_options[35], ‘SUBSCRIPTION SIGNUP’, $body, $header)) $result = true;

    Then replace it with:

    if (mail($form_options[35], ‘SUBSCRIPTION SIGNUP’, $body, $header, “-f”.$from_a)) $result = true;

    It should solve the issue.
    If the issue still exists, please contact with your hosting provider since they see what happened with the email.

    Regards,
    Pantherius

Viewing 1 replies (of 1 total)
  • The topic ‘Signup emails not geting recorded or emailed’ is closed to new replies.