Ahhh, Sendobject --- That seems to work great. Easy Solution. Will that
really work on all types of email clients???
---- DoCmd.SendObject , , , SendTo, , , Subject, Body, False
I tried CDO too with:
----
set oEmail = CreateObject("Cdo.message")
With oEmail
.To = SendTo
.From = From
.Subject = Subject
.textBody = Body
.send
End With
--------------
I got an error message: that my sendusing configuration is invalid. How do
I use CDO to send through MAPI? I don't want to directly send through SMTP
(client restrictions)
Well, if SendObject works for everything, then the CDO doesn't matter.
Thanks
Sue
"Daniel Pineault" wrote:
>
> Depending on your needs, why not simply use the SendObject Method, or CDO?
> --
> Hope this helps,
>
> Daniel Pineault
> http://www.cardaconsultants.com/
> For Access Tips and Examples: http://www.devhut.net
> Please rate this post using the vote buttons if it was helpful.
>