C
Crossh
I am trying to parse out some data from an incoming email using a rule. I
wanted to eliminate the message "A program is trying to Access email
addresses..." I have installed the redemption.dll and have it referenced.
But when I put a stop in the code, nothing is in the objMail.body during
run-time. What am I doing wrong?
Public Sub MailFiltering(MyMail As MailItem)
Dim objMail As Object
Set objMail = CreateObject("Redemption.SafeMailItem")
If InStr(objMail.Body, "Thank you for submitting your change.") > 0 Then
' do stuff here
End if
End Sub
wanted to eliminate the message "A program is trying to Access email
addresses..." I have installed the redemption.dll and have it referenced.
But when I put a stop in the code, nothing is in the objMail.body during
run-time. What am I doing wrong?
Public Sub MailFiltering(MyMail As MailItem)
Dim objMail As Object
Set objMail = CreateObject("Redemption.SafeMailItem")
If InStr(objMail.Body, "Thank you for submitting your change.") > 0 Then
' do stuff here
End if
End Sub