all groups > inetserver asp general > october 2004 >
You're in the

inetserver asp general

group:

Setting Importance....having issues ! ! !


Re: Setting Importance....having issues ! ! ! Jeff Dillon
10/29/2004 10:56:09 AM
inetserver asp general:
Perhaps if you used in the body text words like "Act now!" or "Don't
delay!", it would increase the importance? :-)

Jeff
[quoted text, click to view]

Setting Importance....having issues ! ! ! Jason Kistler
10/29/2004 1:40:39 PM
I am having some serious issues trying to set the "importance" of an ASP
email. I am using the CDO.Message object. Here is the code:


<%
Dim recipients
recipients = Request.Form("Jason") & Request.Form("Debbie")
Dim Groups
Groups = Request.Form("Sales") & Request.Form("FieldServices") &
Request.Form("CSC") & Request.Form("SupplyChain")
Set obj_Mail = Server.CreateObject("CDO.Message")
Set obj_Config = Server.CreateObject("CDO.Configuration")

obj_Config.Fields("urn:schemas:mailheader:importance").Value = 2
obj_Config.Fields("urn:schemas:httpmail:importance").Value = 2

Set Flds = obj_Config.Fields
With Flds
.Item("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2
.Item("http://schemas.microsoft.com/cdo/configuration/smtpserver") =
"rrsmtp"
.Item("urn:schemas:httpmail:priority").Value = 2
.Item("urn:schemas:mailheader:importance").Value = 2

.Update
End With
With obj_Mail
Set .configuration = obj_config
.To = recipients
.From = "DankaIT@danka.com"
.Subject = "Network Operations Severity 1" & " - " & Request.Form("System")
.HTMLBody =_
"<html>" & vbcrlf &_
"<div align='center'></div>" & vbcrlf &_
"<table width='100%' border='5' bordercolor='#0066FF'>" & vbcrlf &_
"<tr>" & vbcrlf &_
"<td height='349' valign='top' bordercolor='#0066FF'> " & vbcrlf &_
"<p align='center'><font color='#0000FF' size='6'><strong><u>Network
Operations " & vbcrlf &_
"Severity 1 Alert</u></strong></font></p>" & vbcrlf &_
"<p align='center'>&nbsp;</p>" & vbcrlf &_
"<p align='center'><u><strong><font color='#FF0000' size='4'>Service Request
" & vbcrlf &_
"#: </u><br>" & Request.Form("ServiceRequestNo") &
"</font></strong></u></p>" & vbcrlf &_
"<p align='center'><u><strong><font color='#FF0000'
size='4'><u>Description</u><br></u>" & Request.Form("System") & " - " &
Request.Form("Impact") & "</font></strong></u></p>" & vbcrlf &_
"<p align='center'>&nbsp;</p>" & vbcrlf &_
"<p align='center'><u><strong><font color='#0000FF' size='4'>Business Groups
" & vbcrlf &_
"Potentially Affected</u><br>" & Groups & "</font></strong></u></p>" &
vbcrlf &_
"<p align='center'>&nbsp;</p>" & vbcrlf &_
"<p align='center'><strong><font color='#0000FF' size='4'>Please visit <a
href='http://dankait'>http://dankait</a> " & vbcrlf &_
"for updates</font></strong></p>" & vbcrlf &_
"<p>&nbsp;</p></td>" & vbcrlf &_
"</tr>" & vbcrlf &_
"</table>" & vbcrlf &_
"</html>"


.Send
End With
Set obj_Mail = nothing
Set obj_Config = nothing
%>

I have tried to use the .Importance = 2 and I get the error that this object
does not support it. The email sends fine, but always comes as normal
importance. I have sent it to the Lotus Notes server *which is where it
eventually will need to go) and to a hotmail account. It does not show as
high priority to either.

What am I missing? Thanks ahead of time for any help!


Re: Setting Importance....having issues ! ! ! Aaron [SQL Server MVP]
10/29/2004 1:40:40 PM
http://www.aspfaq.com/2315

--
http://www.aspfaq.com/
(Reverse address to reply.)




[quoted text, click to view]

Re: Setting Importance....having issues ! ! ! Aaron [SQL Server MVP]
10/29/2004 2:10:48 PM
The one that gets through my spam filter:

"We ship qual1ty med1cations overn1ght to your door!"

AddThis Social Bookmark Button