Perl Example - Send using Spawn Command

This Perl example shows how to send an email using the Spawn command.
		
#!/usr/bin/perl -w
use strict;

my $Pid;
my $executable = 'NetMailBot.exe';
my $server = 'mail.domain.com';
my $from = 'to@domain.com';
my $to = 'from@domain.com';
my $subject = 'Test: Perl Spawn Command';
my $body = "Test: Perl Spawn Command";

my $Args = '-server ' . $server . 
                  ' -from ' . $from .
                  ' -to ' . $to . 
                  ' -subject ' . '"' . $subject . '"' . 
                  ' -body ' . '"' . $body . '"';

Win32::Spawn( $executable, $Args, $Pid );

if ($Pid) 
{
   print "Process started with PID ", $Pid , "\n";
}
else 
{
   print "Unable to start process: ", Win32::FormatMessage( Win32::GetLastError() ), "\n";
}