B
Bob
I am using Net::SMTP as shown (works) but the server in question
will require a username/password before sending.
Does anyone have a sample of a program that shows those parameters
being supplied ?.
$smtp->mail($from);
$smtp->to($to);
$smtp->data();
$smtp->datasend("To: $to\n");
$smtp->datasend("From: $from\n");
$smtp->datasend("Subject: $subject\n");
$smtp->datasend("\n");
$smtp->datasend("$body\n");
$smtp->dataend();
$smtp->quit;
Thanks,
will require a username/password before sending.
Does anyone have a sample of a program that shows those parameters
being supplied ?.
$smtp->mail($from);
$smtp->to($to);
$smtp->data();
$smtp->datasend("To: $to\n");
$smtp->datasend("From: $from\n");
$smtp->datasend("Subject: $subject\n");
$smtp->datasend("\n");
$smtp->datasend("$body\n");
$smtp->dataend();
$smtp->quit;
Thanks,