Menu

$mail->AddEmbeddedImage multiples problem

2012-07-31
2012-09-18
  • Jacques Mulder

    Jacques Mulder - 2012-07-31

    hi

    I cant seem to embed multiple images into one email.

    when I do the email simply does not send, Also does not error out.

    $mail->AddEmbeddedImage(\'images/cbc_prefered_email_footer.jpg\', \"CBC\", \"base64\", \"application/octet-stream\"); 
    $mail->AddEmbeddedImage(\'images/radio_unchecked.jpg\', \"radio_unchecked\", \"base64\", \"application/octet-stream\"); 
    $mail->AddEmbeddedImage(\'mages/radio_checked.jpg\', \"radio_checked\", \"base64\", \"application/octet-stream\");
    

    then in the body

    <img src=\"images/radio_unchecked.jpg\" style=\"border: none;\" width=\"\" height=\"\" alt=\"radio unchecked\" />
    <img src=\"images/radio_checked.jpg\" style=\"border: none;\" width=\"\" height=\"\" alt=\"radio checked\" />
    <img src=\"images/cbc_prefered_email_footer.jpg\" style=\"border: none;\" width=\"\" height=\"\" alt=\"CBC Preferred Supplier\" />
    

    This works for one image but not three as im trying to do in this email.

    Is there another way or am i missing something.

     
  • Jacques Mulder

    Jacques Mulder - 2012-07-31

    Sorry It came right

    Will monitor it and revert if necessary