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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top