stickleprojects Level: Moderator

 Registered: 09-09-2002 Posts: 891
|
Re: Newbie - mailto: help in Access
Hi, the easiest method i found was:
create a form with fields for the to, subject, message, etc.
use the SendMail method in access to send the email. that way you control the list of people it goes to, graphix, etc.
i think it's DoCmd.SendMail (although, that may be obsolete now in 2k, however it's probably Application.Docmd.SendMail, or something)
Double_Clic is trapped by your form:
ie.
public sub MyEmailAddressLabel_DblClick
dim frm as new mymailform
frm.to = me.mymailaddresslabel.caption
frm.from = currentuser()
frm.show vbmodal
set frm=nothing
end sub
____________________________
Build it better, faster, quicker, easier.. then fix it (non-offical MS mission statement)
|