Syntax 
 | ValidEMailAddress(mailaddress$) 
 | ||||
|---|---|---|---|---|---|
Description 
 | Returns True is the mailaddress$ is valid according to the rules of the internet.  
  | ||||
See Also 
 | |||||
Example 
 | Sub Main 
   Dim mail$ 
   Do 
      File$ = InputBox$(“Enter valid mailname:”) 
   loop Until ValidEMailAddress(mail$) 
   Debug.Print mail$ + “ is a valid address!” 
End Sub 
 |