1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
| Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean)
'---------------------------------------------------------------------------------------
' Procedure : Application_ItemSend
' Author : OLiv-
' Date : 17/05/2016
' Purpose :
'---------------------------------------------------------------------------------------
'
' on verifie que c'est un mail
If Not Item.Class = olMail Then GoTo fin
'#######ENREGISTRER UNE COPIE ET OU #######
On Error Resume Next
If Item.SentOnBehalfOfName <> "" And Item.SentOnBehalfOfName <> Application.Session.CurrentUser.Name Then
' 1 er cas
ElseIf Item.SendUsingAccount.displayName <> Application.Session.Accounts.Item(1).displayName Then
' 2eme cas
Else
' utilisateur par défaut
End If
'#######FIN #######
fin:
Set Item = Nothing
End Sub |
Partager