Advertisement
Guest User

Untitled

a guest
Mar 28th, 2018
298
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.25 KB | None | 0 0
  1. Use: for testing against email regex
  2. ref: http://codefool.tumblr.com/post/15288874550/list-of-valid-and-invalid-email-addresses
  3.  
  4.  
  5. List of Valid Email Addresses
  6.  
  7. email@example.com
  8. firstname.lastname@example.com
  9. email@subdomain.example.com
  10. firstname+lastname@example.com
  11. email@123.123.123.123
  12. email@[123.123.123.123]
  13. "email"@example.com
  14. 1234567890@example.com
  15. email@example-one.com
  16. _______@example.com
  17. email@example.name
  18. email@example.museum
  19. email@example.co.jp
  20. firstname-lastname@example.com
  21.  
  22.  
  23.  
  24. List of Strange Valid Email Addresses
  25.  
  26. much.”more\ unusual”@example.com
  27. very.unusual.”@”.unusual.com@example.com
  28. very.”(),:;<>[]”.VERY.”very@\\ "very”.unusual@strange.example.com
  29.  
  30.  
  31.  
  32. List of Invalid Email Addresses
  33.  
  34. plainaddress
  35. #@%^%#$@#$@#.com
  36. @example.com
  37. Joe Smith <email@example.com>
  38. email.example.com
  39. email@example@example.com
  40. .email@example.com
  41. email.@example.com
  42. email..email@example.com
  43. あいうえお@example.com
  44. email@example.com (Joe Smith)
  45. email@example
  46. email@-example.com
  47. email@example.web
  48. email@111.222.333.44444
  49. email@example..com
  50. Abc..123@example.com
  51.  
  52.  
  53.  
  54. List of Strange Invalid Email Addresses
  55.  
  56. ”(),:;<>[\]@example.com
  57. just”not”right@example.com
  58. this\ is"really"not\allowed@example.com
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement