Jump to content

[SOLVED] Mail not sending certain things


timmah1

Recommended Posts

I have a form that when it is filled out, it mails the administrator.

It sends the date correctly, but it does not send the $description

 

Can somebody look and see what the problem might be?

<?php
if(isset($_POST['submit'])){
		  include("connect.php");
		  			
if (!empty($_POST['description'])) {
  		foreach($_POST['description'] as $row=>$Act) {
      $description = mysql_real_escape_string($Act);      
      $game = $_POST['posted_y'][$row]."-".$_POST['posted_m'][$row]."-".$_POST['posted_d'][$row];
      $game_time = mysql_real_escape_string($_POST['game_time'][$row]);
      $away_team = mysql_real_escape_string($_POST['away'][$row]);
      $home_team = mysql_real_escape_string($_POST['home'][$row]);
      $premiere = mysql_real_escape_string($_POST['premiere'][$row]);
  $prediction = mysql_real_escape_string($_POST['prediction'][$row]);
  $posted_date = $_POST['posted_year']."-".$_POST['posted_month']."-".$_POST['posted_day'];
      $sport = mysql_real_escape_string($_POST['sport']);
      if (!empty($description)) {
         $sql = "INSERT INTO picks(sport, posted, game, game_time, description, away, home, prediction, premiere) VALUES(
                        '$sport',
                        '$posted_date',
                        '$game',
                        '$game_time',
                        '$description',
                        '$away_team',
                        '$home_team',
					'$prediction',
                        '$premiere');";
                        mysql_query($sql)
                        or die("Sorry, there was a problem adding picks<br /> ".mysql_error());
      }
   }

echo "Picks for '".date("F j, Y", strtotime($posted_date))."' has been uploaded<br />";
echo "<a href='$back'>Go back to picks page</a><br />$count ";
$to = "Vegas D Sports <tpatterson@mail.com>";
//$to = "Vegas D Sports <dgriffin@mail.com>";

$today = date("F j, Y", strtotime($posted_date));

$subject = "Pick Updates For ".$today."";
$message = "
<html>
<style type='text/css'>
<!--
body,td,th {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 12px;
}
.main {
border: thin solid #000;
}
.header {
color: #fff;
font-weight: bold;
}
-->
</style>
<body>
<table width='600' border='0' align='center' cellpadding='0' cellspacing='0' class='main'>
  <tr>
    <td align='center' valign='top' bgcolor='#333333' class='header'><h2>BASKETBALL FREE PICKS UPDATE</h2></td>
  </tr>
  <tr>
    <td valign='top' align='left'><table width='100%' border='0' cellspacing='0' cellpadding='6'>
      <tr>
        <td colspan='4' bgcolor='#d6d5d5'>The following 'picks' information has been uploaded.</td>
      </tr>
      <tr>
        <td bgcolor='#d6d5d5'><table width='100%' border='0' cellspacing='0' cellpadding='0'>
            <tr>
              <td><strong>Date: </strong>{$today}</td>
              </tr>
            <tr>
              <td>Picks are as follows: {$description}</td> <--THIS PART DON'T SHOW IN EMAIL
              </tr>
        </table></td>
      </tr>
      <tr>
        <td colspan='4' bgcolor='#d6d5d5'> </td>
      </tr>
    </table></td>
  </tr>

</table>
</body>
</html>
";
}
$name = "BasketballFreePicks.com";
$from = "website@basketballfreepicks.com";
$headers = "From: ". $name . " <" . $from . ">\r\n";
$headers .= "Content-Type: text/html; charset=\"iso-8859-1\"";
$headers .= "Content-Transfer-Encoding: 7bit";
//$headers .= 'Cc: notify@mail.com' . "\r\n";
//$headers .= 'Bcc: tpatterson@mail.com' . "\r\n";
// now lets send the email.

mail($to, $subject, $message, $headers);
}
?>

 

Thanks in advance

Link to comment
Share on other sites

Try getting rid of the curly brackets,

 

{$description}

 

to

 

$description

 

or droping out of the quotes

 

". $description ."

 

If there's still no success put some text beside it to make usre it shows up in the same area;

 

here". $description ."

Link to comment
Share on other sites

It shows the variable with no problem.

 

I think the issue might be

$description = mysql_real_escape_string($Act);  

for the description, but the posted date is

$posted_date = $_POST['posted_year']."-".$_POST['posted_month']."-".$_POST['posted_day'];

 

The posted_date shows with no problem

Link to comment
Share on other sites

I don't follow. If the data is assigned to the variable after this point then there is no issue with the variable itself.

 

change;

 

mail($to, $subject, $message, $headers);

 

to

 

mail($to, $subject, $description, $headers);

 

to check if it sends ok...

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.