Email

D

derrick

hi everyone
i have a command button on a form that i want to send as automatic email
(the email is a report in the same database) to a client when click. don't
really know how i should go about doing this.
thanks--
derrick
 
D

Dennis

In the click event of your button, use this code

DoCmd.SendObject ....

Look up SendObject in Help if you need more info.
 
B

Bob Miller

Checkout the SendObject in a Macro. It allows you to enter all the
information you need without having to worry how to code it. Then
direct the button to the Macro.
 
Top