Hi,
How could I add my Range or my variable into the Session.Accounts.Item ??
Thanks,
VBA Code:
Set .SendUsingAccount = .Session.Accounts.Item("123@email.com") work
Set .SendUsingAccount = .Session.Accounts.Item(Range("B3").Value) does not work
Dim MyEmail As String
MyEmail = Range("B3").Value
Set .SendUsingAccount = .Session.Accounts.Item(Range(MyEmail) does not work
How could I add my Range or my variable into the Session.Accounts.Item ??
Thanks,