Developing an outlook helper–part 2 from 5–VBA
Series
Developing Outlook helper – introduction
Developing Outlook helper-VBA macro
Developing Outlook helper – javascript for Office 365
Developing Outlook helper – conclusions
Develop like it was ‘9x:
In the early days to develop an outlook addon it was simple : Press ALT+F11 and wrote the VBA. ( in our days , you go to the outlook settings and enable macros)
The code will be something like this:
01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | Public Sub IsUserInEmail() Dim current Set current = Application.ActiveInspector.CurrentItem If Not TypeOf current Is MailItem Then Exit Sub Dim m As MailItem Set m = current Dim name As String name = InputBox( "Please give me the user name" , "Find User" ) If (Len(name) = 0) Then Exit Sub If (InStr(1, m. To , name, vbTextCompare) > 0) Then MsgBox "The name " & name & " has received the email" Exit Sub End If If (InStr(1, m.Sender.name, name, vbTextCompare) > 0) Then MsgBox "The name " & name & " has received the email" Exit Sub End If Dim rec As Recipient For Each rec In m.Recipients If (InStr(1, rec.name, name, vbTextCompare) > 0) Then MsgBox "The name " & name & " has received the email" Exit Sub End If Next rec MsgBox "The name " & name & " has NOT received the email" End Sub |
Test like it was ‘9x:
If you want to test, open the email ( double click the email) . Then run with F5 and debug.
Deploy like it was ‘9x:
Send to the user the VBA script and tell him step by step how to copy / paste
Leave a Reply