dataend
$smtp->dataend()
- Net::Cmd method issued after
datasendto end the sending of data. Sendsr\nto the server telling it that there's no more data coming and that it should send the message.Here's an example that uses
datasendanddataend:@list_data = (1..10); $smtp->data(); $smtp->datasend(@list_data); $smtp->dataend();