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
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