Beefy Boxes and Bandwidth Generously Provided by pair Networks
Keep It Simple, Stupid
 
PerlMonks  

Re: HTML/Plain Text mail

by arhuman (Vicar)
on Jan 04, 2002 at 22:34 UTC ( [id://136335]=note: print w/replies, xml ) Need Help??


in reply to HTML/Plain Text mail

A good way is probably Mail::Sender as AidanLee already pointed out below.

If you (really have to) do it "by hand" using low level modules,
You'll have to give this kind of struct to the body :
--$boundary Content-Type: multipart/alternative; boundary=\"$boundary2\" --$boundary2 Content-Type: text/plain; charset="..." Content-Transfer-Encoding: quoted-printable txt goes here --$boundary2 Content-Type: text/html; charset="..." Content-Transfer-Encoding: quoted-printable html goes here --$boundary2-- --$boundary--

Don't forget to add the :
content-type: multipart/mixed; boundary=\"$boundary\"
in the header.

Hopes this helps...

UPDATE :
Added the Mail::Sender mention.
UPDATE2 :
Noticed that it was already given by AidanLee.I gave credits.

"Only Bad Coders Code Badly In Perl" (OBC2BIP)

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://136335]
help
Chatterbox?
and the web crawler heard nothing...

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

    No recent polls found