Jump to content
xisto Community
Sign in to follow this  
hfbvm

Send Multi Mail

Recommended Posts

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

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this  

×
×
  • Create New...

Important Information

Terms of Use | Privacy Policy | Guidelines | We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.