Trouble with PEAR class (Mail_Mime)

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Weston C

    Trouble with PEAR class (Mail_Mime)

    I'm having some trouble with Mail_Mime... it looks as if it isn't
    handling the creation of headers transparently. Here's what I'm
    essentially doing:

    $MimeMesg = new Mail_mime();
    $MimeMesg->setTxtBody($Me ssageBody);
    $MimeMesg->setHTMLBody($f illedInTemplate );
    $MimeMesg->addHTMLImage($ entry,'image/jpeg');
    $headers = array( 'From' => $From,
    'Subject' => $Subject);

    $MimeMesgHead = $MimeMesg->headers($heade rs);
    $MimeMesgBody = $MimeMesg->get();
    $mail =& Mail::factory(' mail');
    $mail->send($Recipien ts,$MimeMesgHea d,$MimeMesgBody );

    But when the message arrives in my mailbox, my mail cleint reads it as
    a big hunk of text (also, the image seems to not be attached).

    So I checked the message headers. What I found was that there was no
    Content-Type set, no encoding, and no content boundary defined. The
    first two are easy enough to fix... I just change my headers array
    like so:

    $headers = array( 'From' => $From,
    'Subject' => $Subject,
    'Content-Type' => 'multipart/mixed',
    'Content-Transfer-Encoding' => '7bit', );


    But here's the thing... the boundary *is* getting automatically
    generated for the body... and I don't know how to pull that specific
    boundary in the header. Yes, I guess I can pull it out with a regexp
    or something. I was just hoping to avoid having to do stuff like this
    (and like setting the Content-Type and Encoding for the whole mail
    message manually) by using the class.

    Is my understanding of how Mail_mime works off, or is the class
    somewhat broken?

    regards,
    Weston
Working...