• Resolved ericadecker

    (@ericadecker)


    On line 123 of email_users_options_form.php, you should see:
    <input type="checkbox" name="mailusers_from__sender_exclude" id="mailusers_from__sender_exclude" value="true" <?php if (mailusers_get_from_sender_exclude()=='true') echo 'checked="checked"';?> ></input>

    Remove the extra underscores before ‘sender’, and you should be able to save that setting:
    <input type="checkbox" name="mailusers_from_sender_exclude" id="mailusers_from_sender_exclude" value="true" <?php if (mailusers_get_from_sender_exclude()=='true') echo 'checked="checked"';?> ></input>

    http://wordpress.org/extend/plugins/email-users/

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Mike Walsh

    (@mpwalsh8)

    I have posted a beta build of Email Users 4.4.3 which addresses this problem. If you have a few minutes please verify it works correctly for you.

    I tired this. I even tried it on the new build. The code in my version does not contain the double underscores and the setting still cannot be saved.

    Plugin Author Mike Walsh

    (@mpwalsh8)

    What version of Email Users are you using?

    In 4.6.6 I am able to save the checkbox state for the Sender Exclude option either as checked or unchecked.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Quick fix to save ' exclude sender from email recipient list' setting’ is closed to new replies.