User since: |
Jun 08, 2000 at 20:41 UTC
(24 years ago) |
Last here: |
Jul 24, 2000 at 19:36 UTC
(23 years ago) |
Experience: |
67
|
Level: | Acolyte (3) |
Writeups: |
19
|
Location: | n/a |
User's localtime: |
Dec 10, 2023 at 01:12 -04
|
Scratchpad: |
None.
|
For this user: | Search nodes |
|
print "Content-type: text/html\n\n";
open(MAIL, "|/usr/sbin/sendmail -oi -t") or die print "Can't open se
+ndmail: $!";
print MAIL "To: Recipient name <franklinsmith\@alltel.net>\r\n";
+
print MAIL "From: Your name <support\@onlinepay.virtualave.net\r\n";
print MAIL "Subject: Mailing with Perl\r\n";
print MAIL "\r\nthis is easy.\r\n\r\n.\r\n";
close(MAIL);
print "Message Sent";
|