G
Guest
I would like to use SendObject to send an email to me when a user clicks
"Submit" on a particular form. The code below works, but the user gets a
pop-up from Microsoft Office Outlook: "A program is trying to automatically
send e-mail on your behalf. Do you want to allow this?". The user has to
click "Yes", "No" or "Help".
This would probably alarm the user or at the very least be considered an
annoyance. Is there any way to send an email without triggering the Outlook
pop-up?
Private Sub cmdSubmit_Click()
DoCmd.SendObject , , , "(e-mail address removed)", , , "A DSSF has been
submitted.", "Body goes here.", False
End Sub
Thank you for any help you can give me,
Judy
"Submit" on a particular form. The code below works, but the user gets a
pop-up from Microsoft Office Outlook: "A program is trying to automatically
send e-mail on your behalf. Do you want to allow this?". The user has to
click "Yes", "No" or "Help".
This would probably alarm the user or at the very least be considered an
annoyance. Is there any way to send an email without triggering the Outlook
pop-up?
Private Sub cmdSubmit_Click()
DoCmd.SendObject , , , "(e-mail address removed)", , , "A DSSF has been
submitted.", "Body goes here.", False
End Sub
Thank you for any help you can give me,
Judy