Surjer
Registered User.
- Local time
- Today, 23:25
- Joined
- Sep 17, 2001
- Messages
- 232
History -
I wrote the app in Access 2K and it sent email through Outlook97
We upgraded to Office 2003
I have a custome app in Access that utilizes the ability to send email through Outllook. It worked with Access2K and Outlook97 - it works in Access2K3 but Outlook gives a warning for every email that access is sending.
Outllook Warning: Another program is trying to send an email on your behalf. Do you want to let it? This may be a virus.
And then you have to wait like 5 seconds for the OK button to activate so you can let it send the mail. Is there any way around this? PLEASE TELL ME THERE IS
Here is how I am sending the mail...
Public Function SendEMail()
DoCmd.SendObject acSendNoObject, , , rs("Driver"), , , "TRUCK " & _
"UPDATE", EmailText, False
End Function
I wrote the app in Access 2K and it sent email through Outlook97
We upgraded to Office 2003
I have a custome app in Access that utilizes the ability to send email through Outllook. It worked with Access2K and Outlook97 - it works in Access2K3 but Outlook gives a warning for every email that access is sending.
Outllook Warning: Another program is trying to send an email on your behalf. Do you want to let it? This may be a virus.
And then you have to wait like 5 seconds for the OK button to activate so you can let it send the mail. Is there any way around this? PLEASE TELL ME THERE IS
Here is how I am sending the mail...
Public Function SendEMail()
DoCmd.SendObject acSendNoObject, , , rs("Driver"), , , "TRUCK " & _
"UPDATE", EmailText, False
End Function