Buttons and emails

  • Thread starter Thread starter Gary
  • Start date Start date
G

Gary

I have a button on a form which uses a field entry to
autofill the "to" on an email send form:

Dim strEmail As String

strEmail = "mailto:" & Me![e-mail address] & "?
subject=Business Cards"
Application.FollowHyperlink Address:=strEmail

Can the above code be amended so that when OE is loaded
and the email address inserted, it will also select a
specific "from" account instead of the OE default?

Many Thanks
Gary
 
Not as far as I know, Gary. Even Outlook, which exposes its objects to
automation from Access, does not permit selecting an email account other
than the default account.
 
Back
Top