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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Sending E-mails in Access 2000

Status
Not open for further replies.

gobble

Technical User
Mar 21, 2002
28
GB
I was wondering if someone could help me, I am currently using Windows 2000 and Outlook, I have put the following code behind the save button on a form to automatically send an e-mail to the person stated in a text field.

Response = MsgBox("Do you wish to send e-mail notification to " + [AssignedTo] + "?", vbYesNo)

If Response = vbYes Then


DoCmd.SendObject , , acFormatTXT, [AssignedTo], , , [AimID], "There is a new action for you against the above AIM ID", False, False

End If

this seems to work on my machine and one other (were there was two but now a message comes up "Unknown message recipient(s) the message was not sent") but not for the rest of the team. They do not get a message or anything it just doesn't do anything?

Does anyone have any ideas?

Thanks
 
Check that the missing person is in the system; I had what I think was the same problem and it was due to someone not being in the e-mail system correctly.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top