Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Emailing through Groupwise in Access

Status
Not open for further replies.

henley12

Programmer
Mar 26, 2004
17
0
0
US
I am trying to send a formatted email from Access and I seem to have reached a limit of characters in my email. Does anyone know of such a limit? Here is the code I am using:

Private Sub ConfigureHyperlink()
Dim emailAddress As String
Dim subject As String
Dim body As String

Const CRLF = "%0A"

'emailAddress = "name of recipient"
subject = "Help Desk Alert!!"

body = "******* Call Alert!! *******" & CRLF & CRLF
body = body & "Call ID: " & Me![CallID] & CRLF
body = body & "Caller: " & Me![LName] & ", " & Me![FName] & CRLF
body = body & "Phone: " & Me![Phone] & CRLF
body = body & "Department: " & Me![Dept] & CRLF & CRLF
body = body & "Description: " & Me![Description] & CRLF

mailingLabel.HyperlinkAddress = FormatEmail(emailAddress, subject, body)

End Sub
 
I recall running into such problem and I think it was fixed by an Office Service Pack, but it was some time ago.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top