Jump to content

[SOLVED] Checkbox mail List / Round 2 (e-mail help)


hinchcliffe

Recommended Posts

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

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.