Ciao a tutti
Ho due utenti con due caselle di posta, di cui una in comune tra loro.
Il problema è che se l'utente A invia una mail l'utente B non ne può conoscere la risposta ne sapere che è stata inviata a meno che non guardi l'icona di outlook.
Quindi ho pensato di cercare uno script che all' invio di una risposta,aggiungesse in automatico come ccn l'altro utente,il codice l'ho trovato ed è questo
però per rendere perfetto alle mie esigenze questo script, mi servirebbe inserire una condizione per la quale se l'email è inviata dalla mail non in comune il ccn non venga inserito al contrario quando è inviata dalla e-mail comune il ccn deve essere inserito,spero di essere stato chiarocodice:Private Sub Application_ItemSend(ByVal Item As Object, _ Cancel As Boolean) Dim objRecip As Recipient Dim strMsg As String Dim res As Integer Dim strBcc As String On Error Resume Next ' #### USER OPTIONS #### ' address for Bcc -- must be SMTP address or resolvable ' to a name in the address book strBcc = "test@test.com" Set objRecip = Item.Recipients.Add(strBcc) objRecip.Type = olBCC If Not objRecip.Resolve Then strMsg = "Could not resolve the Bcc recipient. " & _ "Do you want still to send the message?" res = MsgBox(strMsg, vbYesNo + vbDefaultButton1, _ "Could Not Resolve Bcc Recipient") If res = vbNo Then Cancel = True End If End If Set objRecip = Nothing End Sub
Grazie

Rispondi quotando