Re: Email::Mime not able to send array in mesg body

2013-02-20 Thread Brandon McCaig
On Wed, Feb 20, 2013 at 10:41:51AM -0800, Rajeev Prasad wrote: > hello follwoing code is sending empty email body. I am trying > to send HTML content in body of mesg. It works if I use a > string instead of array. I tried sending reference to > @email_body, but It simply printed array_ref in body.

Re: Email::Mime not able to send array in mesg body

2013-02-20 Thread Rajeev Prasad
thx. I did achieve it by using join... join('',@array) From: David Precious To: beginners@perl.org Sent: Wednesday, February 20, 2013 1:01 PM Subject: Re: Email::Mime not able to send array in mesg body On Wed, 20 Feb 2013 10:41:51 -0800 (P

Re: Email::Mime not able to send array in mesg body

2013-02-20 Thread David Precious
On Wed, 20 Feb 2013 10:41:51 -0800 (PST) Rajeev Prasad wrote: > hello follwoing code is sending empty email body. I am trying to send > HTML content in body of mesg. It works if I use a string instead of > array So, er, use a string? Why are you trying to pass an array as the body? What are yo