hinchcliffe Posted October 24, 2007 Share Posted October 24, 2007 Hey guys, Ok I've got help / solved the first bit of php from before. ---> http://www.phpfreaks.com/forums/index.php/topic,164936.0.html Now I need the actual mailing part of this to work. Can someone take a look over my code and guide me? Site: www.bbold.com/mail.php <?php // Connect to DataBase include 'includes/dbconnect.php'; // Query database $query = "SELECT * FROM mail"; $rs = mysql_query($query); echo 'Subscription List <br /><br />'; echo "<form name=\"myform\" action=\"" . $_SERVER['PHP_SELF'] . "\" method=\"post\">" . "<br />"; while($row = mysql_fetch_array($rs)) { echo "<input type=\"checkbox\" name=\"list[]\" value=\"" .$row['email']. "\" >" . " <a href=\"mailto:" . $row['email'] . "\">" . $row['email'] . "</a><br />"; } // If summit button clicked do this!! if($_POST['submit']) { //send the email $content = "put content here"; //start mail script $to = foreach($_POST['list'] AS $email){ $email . "; ";} $subject = "Thank you for registering at Morowat Global"; $message = $content; $headers = "From: [email protected]\r\n"; $headers .= "Reply-To: [email protected]\r\n"; $headers .= "Return-Path: [email protected]\r\n"; $headers .= "'From: ".$from."'\n"; $headers .= 'MIME-Version: 1.0' . "\n"; $headers .= 'Content-type: text/html; charset=iso-8859-1' . "\n"; if ( mail($to,$subject,$message,$headers) ) } ?> <br /> <input type=button value="Check All" onClick="this.value=check(this.form.list[])"> <br/> Send an e-mail:<br /> <textarea name="message" rows="10" cols="70"></textarea><br/><br /> <input type="submit" name="submit" value="Send"> Thanks Link to comment https://forums.phpfreaks.com/topic/74643-solved-checkbox-mail-list-round-2-e-mail-help/ Share on other sites More sharing options...
MadTechie Posted October 24, 2007 Share Posted October 24, 2007 whats the "problem" ? Link to comment https://forums.phpfreaks.com/topic/74643-solved-checkbox-mail-list-round-2-e-mail-help/#findComment-377359 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.