in reply to Email form letters
use Net::SMTP;
$smtp = Net::SMTP->new('xp.psych.nyu.edu'); # connect to an SMTP server
$smtp->mail( 'zoubok@psych.nyu.edu' ); # use the sender's address here
$smtp->to('szoubok@flexdesigns.com'); # recipient's address
$smtp->data(); # Start the mail
# Send the header.
#
$smtp->datasend("To: szoubok\@flexdesigns.com\n");
$smtp->datasend("From: zoubok\@psych.nyu.edu\n");
$smtp->datasend("\n");
# Send the body.
$smtp->datasend("Hello, World!\n");
$smtp->dataend(); # Finish sending the mail
$smtp->quit; # Close the SMTP connection
|
|---|