I have customized the registration forum to send a email to me if someone wants to join our club along with joining the forum. There are a few fields they need to answer to qualify for membership. One of those fields is a memo field in Access. The problem I am having is the email sends all the information except that memo field. I tried to put it in a variable first but still have the same results. So now I am out of ideas. Anyone want to give me suggestions?
Here is my custom code:
strsubject = "GLPUC Registration "
strMessage = "Hello Mike" & vbNewline & vbNewline
strMessage = strMessage & "The following member wishes to join GLPUC: " & vbNewline
strMessage = strMessage & "Name: " & rsKey("M_FIRSTNAME") & " " & rsKey("M_LASTNAME") & vbNewline
strMessage = strMessage & "Trailer: " & trim(rsKey("M_TRAILER")) & vbNewline <--This one does not show up.
strMessage = strMessage & "City: " & chkString(rsKey("M_CITY"),"SQLString") & vbNewline
strMessage = strMessage & "State: " & chkString(rsKey("M_STATE"),"SQLString") & vbNewline
strMessage = strMessage & "Tow Vehicle: " & strETow & vbNewline
strMessage = strMessage & "Username: " & chkString(rsKey("M_NAME"),"SQLString") & vbNewLine
strMessage = strMessage & "Email: " & chkString(rsKey("M_EMAIL"),"SQLString") & vbNewline
strMessage = strMessage & "Homepage: " & chkString(rsKey("M_HOMEPAGE"),"SQLString") & vbNewlin
M_TRAILER is a memo field that does not show up in the email. I do get the Trailer: part, just no data after it.
Thanks