I can't figure out how to get this to work. I have the following:
myItem.HTMLBody = IIf(IsNull(rst!FirstName), "Dear Former Student", rst!FirstName) & "," & Chr(13) & Chr(10) & Me.EmailBody & Chr(13) & Chr(10) & Chr(13) & Chr(10) & "If you would like to unsubscribe to this email list, please email us at xxx@example.org with UNSUBSCRIBE in the Subject." & Chr(13) & Chr(10) & "<a href='http://www.facebook.com'><img src='C:\Users\John Doe\Desktop\Facebook Logo" & strfilename & ".jpg'></a>"
The Chr(13)s and Chr(10)s are not doing what they normally would do if it were set as myItem.Body
How do I make these compatible with my HTMLBody???