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… Read More »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… Read More »Perl: Function to print a HASH completely
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… Read More »Perl: Send bulk mail via SMTP with authentication
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 ( $#ARGV + 1 ).
Below is a sample Perl script to read the command-line parameters.Read More »Perl: Simple way to read Command line arguments
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… Read More »Sending Emails Via Gmail SMTP With Perl