exporting with SendObject method

  • Thread starter Thread starter Mike
  • Start date Start date
M

Mike

Is it possible to use SendObject method to send an email
message without any attachments (just the message text)?
Or just give me a tip how to send emails without
attachments.
 
You can choose the option "acSendNoObject" for the ObjectType argument of
the SendObject Method.

Check Access VB Help on the arguments of the SendObject Method.

There are a number of other ways to send e-mail, e.g. Outlook Automation,
MAPI, CDO but they are need a fair bit more coding.
 
DoCmd.SendObject
acSendNoObject, , , "(e-mail address removed)", , , "Message
Subject", "Message", False
 
Back
Top