K
Kevin
Try first creating a report that pulls all the information
you want from your form. Then using the following command:
DoCmd.SendObject acReport, "Your ReportName Goes
Here", "HTML(*.html)",emailaddress, "", "", "Subject", "",
False, ""
The emailaddress variable is a variant in my code. This
allows the value to be null in case I do not have an e-
mail address for a individual. You can also hardcode this
address if you want. Just put it in quotes in the command.
I also use Lotus Notes and this works as expected. You may
have to have Lotus open at the time you execute the code.
I currently use Notes v6. With v5, for some reason I do
not understand, I had to have lotus open before I executed
this code.
I hope this helps!
Kevin
you want from your form. Then using the following command:
DoCmd.SendObject acReport, "Your ReportName Goes
Here", "HTML(*.html)",emailaddress, "", "", "Subject", "",
False, ""
The emailaddress variable is a variant in my code. This
allows the value to be null in case I do not have an e-
mail address for a individual. You can also hardcode this
address if you want. Just put it in quotes in the command.
I also use Lotus Notes and this works as expected. You may
have to have Lotus open at the time you execute the code.
I currently use Notes v6. With v5, for some reason I do
not understand, I had to have lotus open before I executed
this code.
I hope this helps!
Kevin