-
Topic
-
One of my co-workers suggested a little project, and I like the idea, so I’m going to try it out. However, I’m having trouble at step 1.
The idea is that I’d like to update my GroupWise signature with a line that reports how many spam messages were blocked yesterday. I get an email avery morning that gives me the number, all I need now is to pluck that number out of the message, and write it into my signature line.
Here is what I have so far:
Sub Main(Client, GWEvent)
dim Sig1
dim Sig2
dim Sig3
dim QtySpamBlocked
dim SignatureTextString
QtySpamBlocked = "bazillion"
Sig1 = "David Gerisch, Systems Technician"
Sig2 = "A.C.S. / Tulare County Information Technology"
Sig3 = "Yesterday, we blocked " & QtySpamBlocked & " spam messages."
SignatureTextString = Sig1 & HRT & Sig2 & HRT & Sig3
Call GroupWise.PrefSignature( incPrompt, true, true, SignatureTextString )
End Sub
It runs without error, but it doesn’t update the signature line.
Can someone tell me what I am missing?
Thanks!
Viewing 6 replies - 1 through 6 (of 6 total)
- You must be logged in to reply to this topic.