I wrote an email program for my organization that handles some very specialized things very well that I can use for Outlook or Gmail. Now the manager would like to send a random email to our small client base, but I want the email body to look professional and not send it as an application. I combined the html document that is present in all browsers and was checked. My problem is that I cannot figure out how to specify the body of the message in the html document. Here is the main code.
Everything is configured here:
Do While mailRs.EOF = False 'Me.AttachDoc = "C:\EmailFolder\CouponForm.pdf" emTo = mailRs.Fields("EmailAddr").Value emFrom = " SportsParkInfo@skokieparks.org " emSubject = Me.Subject emtextBody = Me.TextMessage
Here is a call to send an email
Call SendAMessage(emFrom, mailRs.Fields("EmailAddr").Value, _ emSubject, emtextBody, emAttach)
(I received a code to send email from the Internet, and it works great through our mail server.)
In the above, before calling @ emtextBody = Me.TextMessage , where I need to replace Me.TextMessage address / body of the html document. And the message field is a text field in the form of ACCESS. I can not find control over ACCESS that accepts html. I can not use the path to the html document because this is throwing an error. Is there any way around this.
If you need more information, I will be happy to provide it.
Thank you for your time.
jpl
source share