I have email marketing with all language:
<form action="email.php" method="post">
<textarea name="emails" value="emails"></textarea>
<input type="submit" value="Subscribe">
</form>
<?php $emails = $_POST["emails"];
//$email = explode/ltrim/array/string/etc ???
echo $emails;
All have mixed emails with all language:
(textarea emails)
blabla1@hotmail.com
blabla2@hotmail.de
blabla3@yahoo.com
blabla4@hotmail.es
blabla5@gmail.es
...
But how can I have with one language? example I would have only .de
(textarea emails)
blabla1@hotmail.de
blabla2@hotmail.de
blabla3@gmail.de
blabla4@yahoo.de
blabla5@gmail.de
...
Can you tell me? I am completey newbie to this.