in reply to How can i create an email with table and data in body

You can simply send the text by email using MIME::Lite, or create an HTML attachment if you want some other formatting.

  • Comment on Re: How can i create an email with table and data in body

Replies are listed 'Best First'.
Re^2: How can i create an email with table and data in body
by Perlseeker_1 (Acolyte) on Jun 26, 2013 at 10:47 UTC
    Hi Monks,

    I used MIME:Lite to send an email with attachment

    but i want the same info to be displayed in table

    format in email body

    Any inputs please

      Then send it as the message body, assign your content to Data when constructing the message. The documentation provides examples of sending emails, I suggest you try them.

      Hi there,
      A little FYI: You may want to know that the author of MIME::Lite does not recommend using the module. It is stated in one of the first lines of the documentation on CPAN. I tried to use it before and ended up using MIME::Entity instead..