Send Object

  • Thread starter Thread starter Par 3
  • Start date Start date
P

Par 3

I am using Access 2000 and want my form to open up and
send two objects within Access and one Excel spreadsheet
via an Outlook email without my intervention. Currently,
I have only figured out how to send one Access object via
an Outlook email and I have to add the other objects, with
Outlook as the focus, and hit the send key (changing the
True to False in code below still prompts me to hit the
send key). Any help would be appreciated. Here is my
code so far:

DoCmd.SendObject acReport, "rptExample",
acFormatSNP, _
"Addressee1, Addressee2, Addressee2", , , _
EmailSubject, "Example Email Title.", True
 
There is an option in Outlook Express on the Security Tab under Options
which allows you to switch off the warning you get about another program
trying to send an E-Mail I suspect a similar option exists in Outlook
although I can't be sure as I don't have it installed. Once you deselect
this option and use False in your Docmd statement it sends automatically
without intervention.

I'm not sure if you can disable this option programatically or about whether
it's a good idea to permanently disable this warning, perhaps someone else
knows more than me about it and can enlighten us.
 

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

Similar Threads

Send email ? 4
send object 1
Don't want to send mail 6
sendobject is stuck in outlook 1
SendObject acXXXXXX use of varibles 2
Send Email 2
Email Code 2
Error with DoCmd.Rename 5

Back
Top