web
You’re offline. This is a read only version of the page.
close
Skip to main content

Announcements

No record found.

News and Announcements icon
Community site session details

Community site session details

Session Id :
Customer experience | Sales, Customer Insights,...
Suggested Answer

Multiple Email validation in portal using Javascript

(1) ShareShare
ReportReport
Posted on by

Hi,

I am working on one requirement where I have to store multiple email addresses in one field. I want to validate all email address using Javascript on save of the form.

Input Email : abc@gmail.com;test@gmail.com;xyz@gmail.com 

I want to validate all 3 email addresses.

Is there a way we can do that?

Thanks,

Akash

I have the same question (0)
  • Suggested answer
    Pradeep Rai Profile Picture
    5,489 Moderator on at

    Hi,

    In portal, you can write Javascript to validate email id like:

    1. Split the entered text by using Semicolon characters.

    2. After splitting, we will get the array then we can validate each value using regex expression.

    Thanks,
    Pradeep.

    Please mark this as VERIFIED, if it helps. 

  • Suggested answer
    ritam.giri Profile Picture
    20 on at
    You can use these following two functions combined..I hope it'll help.
     
    function validateEmail(field) {
        var regax =/\b[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2.4}\b/i;
        return (regax.test(field)) ? true : false;
    }

    function validateMultipleEmail(value) {
        var result = value.split(";");
        for (var i = 0; i < result.length; i++)
        if(!validateEmail(result[i]))
                return false;
        return true;
    }

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Introducing the 2026 Season 1 community Super Users

Congratulations to our 2026 Super Stars!

Congratulations to our 2025 Community Spotlights

Thanks to all of our 2025 Community Spotlight stars!

Leaderboard > Customer experience | Sales, Customer Insights, CRM

#1
ManoVerse Profile Picture

ManoVerse 180 Super User 2026 Season 1

#2
11manish Profile Picture

11manish 123

#3
CU11031447-0 Profile Picture

CU11031447-0 100

Last 30 days Overall leaderboard

Product updates

Dynamics 365 release plans