Jump to content

Send Acknowledgment Email to Multiple Recipients (listbox)


Recommended Posts

I'm looking to send an acknowledgment email to multiple recipients by selecting them in a listbox. I think I'm most of the way there, but I can't seem to get it to send to more than the first recipient. My thoughts are that it separates the email addresses by commas that need to be replaced with semicolons for the email to send.

I've included my entire javascript below (both for selecting multiple choices in the dropdown and for replacing the commas with semicolons). Any help?

var fieldName = "InsertRecordEmail_To";

var x=document.getElementsByName(fieldName);

x[0].multiple=true;

function calculate()

{

var list=document.getElementsByName("InsertRecordEmail_To")[0].innerHTML;

var email=list.replace(/,/g,";");

document.getElementbyId("cbParamVirtual1").value = email;

var all_email= document.getElementById("cbParamVirtual1").value;

}

document.getElementById("caspioform").onsubmit=calculate;

Link to comment
Share on other sites

  • 2 weeks later...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...