I trying to set up a function that automatically sends an email using a certain text file as the body text. Its either this or if there is any way to insert line breaks.
This is the code I am currently using.
Function SendOrderEmail()
MessageTxt = "Txt here"
DoCmd.SendObject acSendNoObject, Email, acFormatTXT, "email@email.com", "", "", "Re Order", MessageTxt, False
End Function
This is the code I am currently using.
Function SendOrderEmail()
MessageTxt = "Txt here"
DoCmd.SendObject acSendNoObject, Email, acFormatTXT, "email@email.com", "", "", "Re Order", MessageTxt, False
End Function