Skip to main content
Nintex Community Menu Bar

Validate Multi Line Text Box for Email Addresses

  • March 6, 2019
  • 2 replies
  • 11 views

Forum|alt.badge.img+8

I've got a multi-line textbox that I want to ensure has valid email addresses. I've tried setting a rule to ensure the field contains @ with the following syntax:

 

not(contains(Recipients),"@")

 

I can't even get that rule to work, much less multiple conditions!

2 replies

Forum|alt.badge.img+14
  • Scholar
  • March 6, 2019

shouldn't have it been 

not(contains(Recipients,"@"))

Forum|alt.badge.img+8
  • Author
  • March 6, 2019

Wow, can't believe I missed that! Thank you for the quick response!