DenverMarc
Technical User
Hi everyone,
I have an asp page that generates an automatic email. Is it possible to tag the email as "high priority"? Everyone recieving the email is using MS Outlook. Here's the code:
Thanks,
Marc
I have an asp page that generates an automatic email. Is it possible to tag the email as "high priority"? Everyone recieving the email is using MS Outlook. Here's the code:
Code:
<%
Set Mail = Server.CreateObject("CDO.Message")
Mail.From = request("SupportUser")
Mail.To = request("assigned")
Mail.CC = RSInfo("SupportManagerEmail")
Mail.Subject = "DM2 Support - Ticket Reassigned"
Msg = "Ticket # " & RSInfo("SupportID") & " concerning Product Mag Code " & RSInfo("MagCode") & Chr(10)
Msg = Msg & "has been reassigned to " & RSInfo("SupportAssigned") & ". You do not need to work it." & Chr(10)
Mail.TextBody = Msg
Mail.Send
Set Mail = Nothing
%>
Thanks,
Marc