hfbvm 0 Report post Posted April 24, 2009 HTML CODE<form>separate emails by commas<br/>to: <input type="text" name="email"/><br/>msg:<br/><textarea name="msg"></textarea><br/><br/><input type="submit" value="send"/></form>PHP CODE<?$to = $_REQUEST['email'];$msg = $_REQUEST['msg'];if($to == NULL|$msg==NULL){echo "Error.";}else{$mails = explode(",",$to);for($i=0;$i < count($mails);$i++){if($mails[$i] != NULL){$m = mail($mails[$i],"",$msg);if($m){echo "successfully sent";}else{echo "Error";}}}}?> Share this post Link to post Share on other sites
aloKNsh 0 Report post Posted April 28, 2009 hey nice share....from where you have got this or you have made it on your own.......thank you very much Share this post Link to post Share on other sites