Beefy Boxes and Bandwidth Generously Provided by pair Networks
We don't bite newbies here... much
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??

Hmm, works fine for me (what exactly do you mean by "isn't coming through"?):

use MIME::Lite; $email='me@home.com'; $htmlMail = "<html></html>"; $textMail = "texting"; my $mailObj = MIME::Lite->new( From => 'admin@domain.com', To => $email, Subject => "subject line here", Type => 'multipart/alternative' ); $mailObj->attach( Type => 'text/html', Data => $htmlMail, ); $mailObj->attach( Type => 'text/plain', Data => $textMail, ); print $mailObj->as_string(); __OUTPUT__ Content-Transfer-Encoding: binary Content-Type: multipart/alternative; boundary="_----------=_1138042047 +111520" MIME-Version: 1.0 X-Mailer: MIME::Lite 3.01 (F2.72; T1.15; A1.62; B3.04; Q3.03) Date: Mon, 23 Jan 2006 18:47:27 UT From: admin@domain.com To: me@home.com Subject: subject line here This is a multi-part message in MIME format. --_----------=_1138042047111520 Content-Disposition: inline Content-Length: 13 Content-Transfer-Encoding: binary Content-Type: text/html <html></html> --_----------=_1138042047111520 Content-Disposition: inline Content-Length: 7 Content-Transfer-Encoding: binary Content-Type: text/plain texting --_----------=_1138042047111520--

There are ten types of people: those that understand binary and those that don't.

In reply to Re: problem w/ MIME::Lite and multipart/alternative emails by tirwhan
in thread problem w/ MIME::Lite and multipart/alternative emails by geektron

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others studying the Monastery: (6)
As of 2024-04-23 21:16 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found