I want to create a form, which is basically a text area which has e-mail addresses on new lines:
For example;
<textarea>
[email protected],
[email protected],
[email protected],
[email protected],
[email protected],
[email protected],
[email protected],
[email protected],
[email protected]
</textarea>
I then want this form to submit to a php page, which will split the e-mail addresses and put them into a loop, so I could paste a list of 300 e-mails into a text area, in that format, and then submit the form and it would do a foreach loop for EACH individual e-mail (e-mail them).
Could somebody please explain how I would split the e-mail addresses up individually and then process them into a loop?
Thanks a bunch