Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations sizbut on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Anyone subscribe to Access*VB*SQL Advisor?

Status
Not open for further replies.

perrymans

IS-IT--Management
Nov 27, 2001
1,340
US
I just went to pick up the April 2003 issue for the You've Got Mail article and they have moved on to May already! It is an article on how to send emails using Outlook from Access.

Thanks. Sean.
 
I just subscribed, so I didn't see it. Are you looking for some super duper way to do it or are you trying to find out how to do it?
 
Sending an email from Access via Outlook is really easy. Make a cmdButton on your form and add the following code to the button's OnClick event:

Private Sub cmdEmail_Click()

DoCmd.SendObject acSendReport, "rptInventory", acFormatHTML, "sombody@yourcompany.com", , , _
"Inventory Report", "To: Somebody, Please see attached inventory report."

End Sub

-Richard
 
grnzba,

I wanted to see that article again so that I could see what and hoe they were sending emails. Do you get the web access as well with your subscription?

RichardOverturf,

Thanks for the info, but I am not actually sending objects from Outlook, which complicates things more. I want to send out a mass email(s) based on the results of a query. I have something that works right now [thanks to thread javascript:eek:penindex(450,350,'], but I wanted to fill the Bcc field for one email, rather than multiple singles if possible. Also, they know what they are doing, so I figure their coding will be more solid and robust.

Thanks. Sean.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top