Advertisement
Advertisement
| 10.08.2008 at 04:38PM PDT, ID: 23799497 | Points: 500 |
|
[x]
Attachment Details
|
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: |
#!/usr/bin/perl
use Net::SMTP;
$smtp=Net::SMTP->net('mailhost',Debug=>1);
$smtp->mail('sender\@domain.com');
$smtp->to('recip\@domain.com');
$smtp->data();
$smtp->datasend("Subject: test","\n");
$smtp->datasend("testing\n");
$smtp->datasend(".\n");
$smtp->dataend();
$smtp->quit();
|