Recent Articles
- Twitter Controlled RAT (Mobile accessible), Started by gotroot in Perl
- Multiple Choice Questions in PERL, Started by ungalnanban in Perl
- Ceil/Floor/Round in Perl, Started by pradeep in Perl
- Access Amazon S3 Service using Perl, Started by pradeep in Perl
- Easy Pagination In Perl, Started by pradeep in Perl
Similar Articles
- XML parsing in Perl, Started by pradeep in Perl
- Sending Emails in ASP.NET, Started by decodec in ASP / ASP.NET
- Sending e-mail in ASP with CDOSYS, Started by pradeep in ASP / ASP.NET
- Paths in Perl, Started by pradeep in Perl
Code: Perl
use Net::SMTP;
#Create a new object with 'new'.
$smtp = Net::SMTP->new("smtp.go4expert.com");
#Send the MAIL command to the server.
$smtp->mail("pradeep\@go4expert.com");
#Send the server the 'Mail To' address.
$smtp->to("shabbir\@go4expert.com");
#Start the message.
$smtp->data();
#Send the message.
$smtp->datasend("Hello World!\n\n");
#End the message.
$smtp->dataend();
#Close the connection to your server.
$smtp->quit();










Yet to provide details about himself



Linear Mode

