how do I set a input mask for email addresses

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I want to force users to input a work related email address not hotmail or
yahoo. How do I create a mask that inputs the provider address that I want?
i.e. all addresses will end with "@hope.com"
 
Don't use an input mask. Instead, set a validation rule on the field:

Like "*@hope.com"

This will reject any address that doesn't end with @hope.com.
 
John, thanks a lot. I was going about it incorrectly. Your information
helped me to acheive exactly what I needed.
 
Back
Top