So i'm working (playing?) on this little side project of mine with my spare brain-cpu spins. It's a Microsoft 2k(rap) SMTP server i'm trying to do this to, if that means anything. It all seems to run fine, and the mail gets queued even, but I see nothing in my inbox. Usernames have been changed to protect the less than innocent.
<my first code ever>
#!/usr/bin/perl
$smtp = Net::SMTP->new("mailserver",
Debug => 1,
);
$smtp->mail($ENV{"user1"});
$smtp->recipient("user2");
$smtp->data();
$smtp->datasend("\n");
$smtp->datasend("Testes. 1... 2... uh, 3...\n");
$smtp->dataend();
$smtp->quit;
</my first code ever>
Any wisdom to be had?
-><-
Edit kudra,
2001-10-30
Changed title
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.