• Resolved gthmpsn

    (@gthmpsn)


    I had to make a few changes in emailuserx_functions.php for better performance. Listed below are the changes.

    Plain Text option didn’t work
    modified :

    $mail->IsHTML(true);
    if ($_POST["format"] == "html")
    {$mail->MsgHTML($_POST["message"]); }

    to

    if ($_POST["format"] == "html")
    { $mail->IsHTML(true); $mail->MsgHTML($_POST["message"]); }
    else
    { $mail->IsHTML(false); $mail->Body = $_POST["message"]; }

    In IE 8 the form did not display well.
    modified :
    Added > ‘Width:200px;’ to both select style (without single quotes)
    Added > ‘width=\”150\”‘ to left table cells for each label (without single quotes)

    http://wordpress.org/extend/plugins/emailuserx/

The topic ‘[Plugin: EmailUserX] A Few changes to work better’ is closed to new replies.