Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author MC_Will

    (@mc_will)

    Hi,

    Are you using a Mandrill template? If that’s the case, it seems that the HTML of the template is malformed or corrupted and a tiny 1×1 image got broken.

    Either that, or whatever means you’re using to compose the email is sending a malformed HTML.

    You can use the mandrill_payload filter to check what wpMandrill is receiving. Something like:

    function logPayload($message) {
        error_log(print_r($message,true));
        return $message;
    }
    add_filter('mandrill_payload', 'logPayload');
    Thread Starter amq

    (@amqlit)

    i figured out the problem, my email client “eM Client” has an issue. This is because of the way the image tag is expressed in the email:

    <img src=”https://mandrillapp.com/track/open.php?u=000000000&id=00000000000000000000000&tags=_all,[email protected],wp_WPCF7_ContactForm->compose_mail&#8221; height=”1″ width=”1″>

    As you can see above
    ———————
    WPCF7_ContactForm->compose_mail
    ———————

    The “>” breaks the image tag in eM Client. I am not sure if there is fix on your end or the email clients end. Maybe there are other email clients that mess up also?

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Contact form 7 "compose_mail" height="1" width="1">"’ is closed to new replies.