Skip to content
Topic

PERL

10 notes.

PERL Dec 19, 2012 1 min read

Perl: Send an Email with attachment through Gmail SMTP

This is a tutorial on how to send an email with attachment via Gmail SMTP. Here i am using Email::MIME to create the email/message object. Email::Sender::Simple (sendmail) is…

PERL Sep 7, 2012 1 min read

Perl: Send an E-Mail using Email::Simple and Email::Sender

Email::Simple is the first deliverable of the "Perl Email Project." The Email:: namespace was begun as a reaction against the increasing complexity and bugginess of Perl's existing email…

HTML Aug 17, 2012 1 min read

Perl: How to Upload a file using perl CGI

This is a tutorial on how to upload a file using perl CGI.

PERL Mar 17, 2012 1 min read

Perl: Process an array or a hash inside a Template

Process and array or a hash inside a perl template 3658382436aa0498b4fe7f_000004 Enjoy coding! :)

PERL Dec 23, 2010 1 min read

Perl: Send a chat message to your gmail buddy using Jabber

Net::Jabber provides a Perl user with access to the Jabber Instant Messaging protocol. Net::Jabber is a convenient tool to use for any perl script that would like to…

PERL Dec 21, 2010 1 min read

Perl: Send a message to a queue or topic using Stomp

Net::Stomp module allows you to write a Stomp client. Stomp is the Streaming Text Orientated Messaging Protocol (or the Protocol Briefly Known as TTMP and Represented by the symbol…

PERL Dec 15, 2010 1 min read

Perl: Function to print a HASH completely

Below is a perl function that i wrote to print a HASH completely. What i mean by 'completely' is that it will expand all hashes and arrays found…

PERL Dec 15, 2010 1 min read

Perl: Send bulk mail via SMTP with authentication

This is a tutorial on how to send mails to multiple recipients using Perl Net::SMTP module with authentication. The smtp module implements a client interface to the SMTP…

PERL Dec 14, 2010 1 min read

Perl: Simple way to read Command line arguments

Parsing command-line arguments in Perl is very easy. All the command-line arguments are present in the array $ARGV. You can get the number of arguments passed as (…

PERL Dec 8, 2010 1 min read

Sending Emails Via Gmail SMTP With Perl

Update: Click here If you want to Send an Email with attachment through Gmail SMTP. This is a tutorial on how to send mails using Perl Net::SMTP module…