> Company

 > News

 > Login

 

 > Home

 > Purchase

 > Explore

 > Download

 > References

 > Support Center

 > Products

 > Site Search

 

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";
}
		
		
 

Content, HTML, and files Copyright © 1999-2008 ExclamationSoft Inc.
Privacy Policy    ExclamationSoft Home    Contact Us
Microsoft is a registered trademark of Microsoft Corporation in the United States and other countries