Exchange Server side rule to forward with high importance
Hi,
I wrote a perl script that sends an email via smtp. I don't see a way to send it with high importance. What I wanted to try was to send to a different account, and then forward with high importance. But the high importance is a client side rule. Is there any way to do this as a server side rule?
Or, if anyone knows if smtp has the calls for high importance, that would work for me as well.
Here is my smtp send code.
sub sendOrderEmail() {
$smtp = Net::SMTP->new(
Host => "redwmail001.norwoodaustin.com",
Hello => "redwmail001.norwoodaustin.com",
Timeout => 120,
Debug => 1,
);
$smtp->mail($theSender);
$smtp->to($theOrderRecipient);
$smtp->data();
$smtp->datasend($theFrom);
$smtp->datasend("\n");
$smtp->datasend($theOrderTo);
$smtp->datasend("\n");
$smtp->datasend("Subject: Sales Order ");
$smtp->datasend("$name");
$smtp->datasend(" is ready to be entered.");
$smtp->datasend("\n");
$smtp->datasend("\n");
$smtp->datasend("\n");
$smtp->dataend();
$smtp->quit;
}
ExchangeOutlookPerl
Last Comment
Rick Fee
8/22/2022 - Mon
Rammestein
Which version of Exchange u using?
Are u sending the email to internet
are u allowing relay?
norwoodhelpdesk
ASKER
Exchange 2007
no, just to internal recipients
yes
The email is working fine, I am just hoping for an option to send it via high importance.
Are u sending the email to internet
are u allowing relay?