> > Hi all! > > I am using Mail::Sendmail module to send e-mails from my perl application but the text of these messages seems to be too much long and when receiving the e-mail the text of the message is not complete. > Do yo know if there are any message size limitation? It this limitation exists, what module, without limitation, can I use? >
The module is pretty basic and appears to take a message just as a string, so theoretically there is only the bound of how much memory Perl can get allocated to it by the system. 'sendmail' itself may be configured to restrict the size of messages it will send, but this is usually on the order of megabytes. Are you sure this isn't a client side issue, aka with the mail reader? I have dealt with more than one mail client that just loved to chop my messages off before the end. See if you can access one of the messages using a plain text editor and see if the whole message is really not there, or if it just isn't being rendered properly. HTH, http://danconia.org -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] <http://learn.perl.org/> <http://learn.perl.org/first-response>