RobertIngles
Technical User
Hi guys;
I have about 3000 emails I need to send via outlook (through exchange)using Access.
I am wanting to use Access to populate the fields for To, Subject and Message personalized to the recipient and giving them specific information about their device serial number. No problem with subject ("Re Device with serial number"&" "&[TableName]![SerialNumber]) however the message field is causing me frustration in regards to carriage returns. In the message field (memo) I am using this code (in the expression builder):
"Hi" & " " & [tblUser]![FirstName] & Chr(10) & Chr(13) & "Robert Ingles here..."
Searching the web gave me the & Chr(10) & Chr(13) & but it does not return as a new line when I view the field in my form (I also want a blank line between).
What am I doing wrong?
I have about 3000 emails I need to send via outlook (through exchange)using Access.
I am wanting to use Access to populate the fields for To, Subject and Message personalized to the recipient and giving them specific information about their device serial number. No problem with subject ("Re Device with serial number"&" "&[TableName]![SerialNumber]) however the message field is causing me frustration in regards to carriage returns. In the message field (memo) I am using this code (in the expression builder):
"Hi" & " " & [tblUser]![FirstName] & Chr(10) & Chr(13) & "Robert Ingles here..."
Searching the web gave me the & Chr(10) & Chr(13) & but it does not return as a new line when I view the field in my form (I also want a blank line between).
What am I doing wrong?