SMTP ".send"

J

JimP

Ms-Access generates an error message if the send "From" is not a fully
qualified email address. Is there code to trap for a fully qualified email
address?
 
T

Tom van Stiphout

On Wed, 1 Apr 2009 07:51:12 -0500, "JimP" <[email protected]>
wrote:

I would use this:
On Error Goto <Label>

You can also test if the email address is properly formed, for example
with a regular expression, but testing if a given address is actually
in use is much harder. You'll have to call the SMTP server and
interpret its response. You may be able to find more info by googling
for it.

-Tom.
Microsoft Access MVP
 
Top