in reply to Net::SMTP - Length limitation.
Try changing your second-to-last line to:
There may well be a limit to how much data you can send with no newlines embedded, but I don't think the actual length of the string itself matters as long as it's divided up by newlines every so often (about 6 lines of text for some user agents I've used). I've successfully used Net::SMTP to send a packet of 20 encoded pngs all sucked into one string, though so I know the string can be long.$smtp->datasend("Subject: Status Report $subject_date\n\n");
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Net::SMTP - Length limitation.
by the_0ne (Pilgrim) on May 16, 2001 at 16:56 UTC |