Estoy intentando hacer una pequeña clase para mandar correos, estoy atorado :( porque primero debo confirmar que los mails sean validos y cuales no!
Código PHP:
Ver original<form action="" method="post" >
<label>Asunto:</label><br />
<input type="text" name="subject" /><br />
<label>Mensaje:</label><br />
<textarea name="msg" cols="50" rows="15"></textarea><br />
<label>De:</label><br />
<input type="text" name="from" /><br />
<label>Lista de correos:</label><br />
<textarea name="text" cols="50" rows="15"></textarea><br />
<input type="submit" value="Enviar" />
</form>
<?php
$enviar->debug($_POST['text']);
function debug($texto) {
foreach($texto as $mails) {
echo $mail." VALIDO";
return $mail;
} else {
echo $mail." INVALIDO";
}
}
}
}
function enviar($texto, $subject, $msg, $from) {
$mails = $this->debug($texto);
if(@mail($to, $subject, $msg, "From: ". $from)) {
echo $to." OK<br />";
} else {
echo $to." FAIL<br />";
}
}
}
}
?>