Connecting Tech Pros Worldwide Forums | Help | Site Map

What should be the mime type given

Member
 
Join Date: May 2008
Posts: 51
#1: Aug 19 '09
hi,
i am trying to send a mail to lotus notes through a mail. But unfortunately,
the mail is not sent to lotos notes if the table, which contains data, which is in my system contains more than 64 columns . The code snippet is as under.
Expand|Select|Wrap|Line Numbers
  1. my $top = MIME::Entity->build(Type =>"text/html", From => "$from", To => "$to", Bcc => "$bcc", Subject => "$subject", Data => $body);
  2. open MAIL, "| /usr/sbin/sendmail -t -oi -oem -f $returnto" or die "open: $!";
  3. print MAIL "Reply-To: $from\n";
  4.  
is there anything like we need to chage type ?

Please help me.

Regards,
Pavan
Reply