Hello,
> Take a look at Ron's solution ...
> http://www.rondebruin.nl/mail/account.htm
Thank you!
I have include the code in my solution and der sender-account is changing.
Unfortunately the mail is get stuck in the Outgoing-Folder.
I must reopen the mail and must once again click of the send button.
Then I must also again sign the mail. Then the mail will be sending.
The code is:
Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean)
Dim objRecip As Recipient
Item.SendUsingAccount = Outlook.Application.Session.Accounts.Item(1)
Set objRecip = Item.Recipients.Add("(E-Mail Removed)")
objRecip.Type = olBCC
objRecip.Resolve
Set objRecip = Nothing
End Sub
Thank you!
Michael