Oct 1, 2003 #1 wimvanherp Programmer Joined Mar 3, 2001 Messages 149 Location BE I do not find how to send a mail with several attachments. I'm working in Windows. Can anybody help me ? Wim Vanherp
I do not find how to send a mail with several attachments. I'm working in Windows. Can anybody help me ? Wim Vanherp
Oct 1, 2003 #2 Rieekan Programmer Joined Apr 2, 2001 Messages 737 Location US Try using the Mime::Lite Module. It allows you build and send messages with attachments very easily. - Rieekan Upvote 0 Downvote
Try using the Mime::Lite Module. It allows you build and send messages with attachments very easily. - Rieekan
Oct 2, 2003 Thread starter #3 wimvanherp Programmer Joined Mar 3, 2001 Messages 149 Location BE Thanks, that's what i was looking for Wim Vanherp Upvote 0 Downvote
Oct 2, 2003 #4 CherylD Programmer Joined May 1, 2001 Messages 107 Location CA To attach with MIME::Lite, here's some sample code: $msg->attach(Type => 'image/gif', Id => 'myimage.gif', Path > '/path/to/file.gif', ); Upvote 0 Downvote
To attach with MIME::Lite, here's some sample code: $msg->attach(Type => 'image/gif', Id => 'myimage.gif', Path > '/path/to/file.gif', );