johntology
Programmer
Hello,
I want a button onClick to grab the content of a populated field on my Access record and populate the body of an email client with it, including any hard returns or other formatting. I have tried this simple code:
Me.eSSS.SetFocus
Dim esssContent As String
esssContent = Me.eSSS.Text
Application.FollowHyperlink "mailto:?body=" & esssContent
But it only allows about 750 characters in the body, after which I get a runtime error. Could somebody let me know a more robust way to do this? Note, I want this to work on the user's default email client, whatever it may be.
Thanks.
I want a button onClick to grab the content of a populated field on my Access record and populate the body of an email client with it, including any hard returns or other formatting. I have tried this simple code:
Me.eSSS.SetFocus
Dim esssContent As String
esssContent = Me.eSSS.Text
Application.FollowHyperlink "mailto:?body=" & esssContent
But it only allows about 750 characters in the body, after which I get a runtime error. Could somebody let me know a more robust way to do this? Note, I want this to work on the user's default email client, whatever it may be.
Thanks.