Hello everyone. I am having one heck of a time doing something very simple in perl. I am trying to set a variable (named $test) to this value:
"email.address1\@yahoo.com", "email.address2\@yahoo.com"
Then I am using the variable as part of this SMTP call:
$smtp->to($test);
Here is my code but it does not:
my $test = "\"matthew.purdy\@lmco.com\", \"matthew.purdy\@lmco.com\"";
$smtp->to($test);
Can anyone un-confuse me??????
thanks,
Matt
"email.address1\@yahoo.com", "email.address2\@yahoo.com"
Then I am using the variable as part of this SMTP call:
$smtp->to($test);
Here is my code but it does not:
my $test = "\"matthew.purdy\@lmco.com\", \"matthew.purdy\@lmco.com\"";
$smtp->to($test);
Can anyone un-confuse me??????
thanks,
Matt