Hello all,
somebody know a solution for the following problem.
We send mails (> 1000) automatically with the standard mail codeunit. The problem is, when a mail couldn't deliver, because the address is wrong, a message popup in outlook express (used mail programm) and the job freezed for this time.
Is there any way to control or to setup outlook to prevent this message?
THX
0
Comments
Is the pop-up because the address does not exist, in which case you should be able to send the mail, but only get a non-delivery notification email.
If your problem is based on formatting of the address, then you should write some code in nav to check the format of all stored addresses, so that Outlook Express would accept them.
regards,
gus
MailSent := OSendMail.Send;
ErrorNo := OSendMail.ErrorStatus;
Doesnt it return what you need?
Dmitry