sbrisley Posted July 26, 2012 Report Share Posted July 26, 2012 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; Quote Link to comment Share on other sites More sharing options...
hmolina Posted August 9, 2012 Report Share Posted August 9, 2012 Did you ever found the solution? I am trying to do the same Thank you Quote Link to comment Share on other sites More sharing options...
Recommended Posts
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.