You are here: Re: not receiving emails expected « PHP Programming Language « IT news, forums, messages
Re: not receiving emails expected

Posted by davjoh on 10/01/07 17:40

On Sep 30, 9:00 pm, Jerry Stuckle <jstuck...@attglobal.net> wrote:
> davjohwrote:
> > On Sep 30, 11:01 am, Jerry Stuckle <jstuck...@attglobal.net> wrote:
> >>davjohwrote:
> >>> On Sep 28, 3:21 pm, Jerry Stuckle <jstuck...@attglobal.net> wrote:
> >>>>davjohwrote:
> >>>>> On Sep 27, 9:00 pm, Jerry Stuckle <jstuck...@attglobal.net> wrote:
> >>>>>>davjohwrote:
> >>>>>>> The following describes the problem I am having. Can anyone help?
> >>>>>>> $send_to[] = "davjoh...@yahoo.com";
> >>>>>>> $send_to[] = "product...@advisiongraphics.com";
> >>>>>>> $send_to[] = "advision_gali...@mac.com";
> >>>>>>> // send email
> >>>>>>> foreach ($send_to as $dest)
> >>>>>>> mail($dest,$email_subject,$message,$header); //This line NOT
> >>>>>>> working
> >>>>>>> //expecting it to send email to all the above addresses assigned to
> >>>>>>> $send_to[] array. Is it because values have not been added to $dest
> >>>>>>> and if so how to do
> >>>>>>> mail($r["email"],$email_subject,$message,$header); //This line
> >>>>>>> working
> >>>>>> Nope, but you haven't told us enough about your problem. For instance,
> >>>>>> what's the response from the mail() call? What's in $header?
> >>>>>> Are you suer it isn't going into a spam black hole somewhere? Are you
> >>>>>> trying to send too many emails too quickly, and therefore upsetting your
> >>>>>> MTA?
> >>>>>> --
> >>>>>> ==================
> >>>>>> Remove the "x" from my email address
> >>>>>> Jerry Stuckle
> >>>>>> JDS Computer Training Corp.
> >>>>>> jstuck...@attglobal.net
> >>>>>> ==================- Hide quoted text -
> >>>>>> - Show quoted text -
> >>>>> Here is some more code related to the header
> >>>>> if (!empty($mail_page))
> >>>>> {
> >>>>> // build headers
> >>>>> $header .= "MIME-Version: 1.0\n";
> >>>>> $header .= "Content-Type: text/html\n";
> >>>>> ob_start();
> >>>>> include($mail_page);
> >>>>> $message = ob_get_contents();
> >>>>> ob_end_clean();
> >>>>> $message .= "\n";
> >>>>> }
> >>>>> else
> >>>>> {
> >>>>> // build email
> >>>>> $message = "";
> >>>>> $message .= sprintf("Subject: %s\n",$subject);
> >>>>> $message .= "\n";
> >>>>> $message .= sprintf("Date: %s\n",$r["adate"]);
> >>>>> $message .= sprintf("Company: %s\n",$r["company"]);
> >>>>> $message .= sprintf("First Name: %s\n",$r["firstname"]);
> >>>>> $message .= sprintf("Last Name: %s\n",$r["lastname"]);
> >>>>> $message .= sprintf("Email: %s\n",$r["email"]);
> >>>>> $message .= sprintf("Phone: %s\n",$r["tel_phone"]);
> >>>>> $message .= "\n";
> >>>>> $message .= sprintf("Mailing: %s\n",$r["mailing"]);
> >>>>> $message .= "\n";
> >>>>> $message .= sprintf("Comments:\n",$r["comments"]);
> >>>>> $message .= sprintf("%s\n",$r["comments"]);
> >>>>> $message .= "\n";
> >>>>> }
> >>>> And don't try to fool with html to start. Get it to work with plain
> >>>> text, first.
> >>>> And when you do send html email, you should always have a plain text
> >>>> mime type for those who have text email readers (or choose to disable
> >>>> html email).
> >>>> Also, some spam filters will block email which has just html.
> >>>> --
> >>>> ==================
> >>>> Remove the "x" from my email address
> >>>> Jerry Stuckle
> >>>> JDS Computer Training Corp.
> >>>> jstuck...@attglobal.net
> >>>> ==================- Hide quoted text -
> >>>> - Show quoted text -
> >>> It appears this is the solution.
> >>> The php.ini file needed 'short tags on' enabled to read the
> >>> array correctly.
> >> No, short tags has nothing to do with reading arrays. And nothing
> >> you've posted here indicates a problem with short tags.
>
> >> Also, you should not be depending on short_tags being on. Even Zend
> >> talks about that.
>
> >> - Show quoted text -
>
> > if I echo the results of reading the array could that help in
> > determining the problem?
>
> It could. But more importantly, where is the data coming from? and
> what does it look like there?
>
> And when dealing with objects and arrays, it's generally better to do
> something like:
>
> echo "<pre>\n";
> print_r ($var);
> echo "</pre>\n";
>
> --
> ==================
> Remove the "x" from my email address
> Jerry Stuckle
> JDS Computer Training Corp.
> jstuck...@attglobal.net
> ==================- Hide quoted text -
>
> - Show quoted text -

The data is hard coded into the file

$send_to[] = "davjoh...@yahoo.com";
$send_to[] = "product...@advisiongraphics.com";
$send_to[] = "advision_gali...@mac.com";


// send email

This is the whole file:


<?php
// Copyright 2004-2007 J.F. Aubertin & AdVision Multimedia
Productions, all rights reserved.
//----------------------------------------------------------
//------------[ Config ]------------------------------------
//----------------------------------------------------------

$thanks_page = "contact_us_thanks.php";
$form_page = "contact_us_form.php";
$mail_page = "contact_us_email.php";

$send_to[] = "davjoh123@yahoo.com";
$send_to[] = "webmaster@cliffhousecottages.com";
//$send_to[] = "info@cliffhousecottages.com";
$email_subject = "Cliffhouse & Treehouse Accommodations - Thank you
for contacting us!";
$email_from = "reservaations@cliffhousecottages.com";

$db_table = "clifftree_requests";

//----------------------------------------------------------
//------------[ Setup ]-------------------------------------
//----------------------------------------------------------

include_once("fdb_conf.php");
include_once("flib/txt2htm.php");

if (empty($vars)) $vars=$HTTP_POST_VARS;
if (empty($vars)) $vars=$HTTP_GET_VARS;
if (empty($vars)) $vars=$_POST;

//----------------------------------------------------------
//------------[ Main Code ]---------------------------------
//----------------------------------------------------------

if (empty($vars))
{
include($form_page); exit();
}
else
{
//if (empty($vars["company"])) $err_msg[] = "Company required.";
if (empty($vars["firstname"])) $err_msg[] = "First Name Required.";
if (empty($vars["lastname"])) $err_msg[] = "Last Name Required.";
if (empty($vars["email"])) $err_msg[] = "Email Required.";
if (empty($vars["tel_phone"])) $err_msg[] = "Telephone Number
Required.";
//if (empty($vars["street"])) $err_msg[] = "Street required.";
//if (empty($vars["city"])) $err_msg[] = "City required.";
//if (empty($vars["prov"])) $err_msg[] = "Prov/State
required.";
//if (empty($vars["postal"])) $err_msg[] = "Postal Code
required.";
//if (empty($vars["country"])) $err_msg[] = "Country required.";

$str="sdate"; if (!checkdate($vars[$str."_month"],$vars[$str."_day"],
$vars[$str."_year"])) $err_msg[] = "Valid appointment date
required";
$str="xdate"; if (!checkdate($vars[$str."_month"],$vars[$str."_day"],
$vars[$str."_year"])) $err_msg[] = "Valid appointment date
required";
$str="ldate"; if (!checkdate($vars[$str."_month"],$vars[$str."_day"],
$vars[$str."_year"])) $err_msg[] = "Valid appointment date
required";


if (count($err_msg) > 0)
{
include($form_page); exit();
}
else
{
$str="sdate";
$vars[$str] = sprintf("%04d.%02d.%02d",$vars[$str."_year"],
$vars[$str."_month"],$vars[$str."_day"]);
$sdate = mktime(0,0,0,$vars[$str."_month"],$vars[$str."_day"],
$vars[$str."_year"]);

$str="xdate";
$vars[$str] = sprintf("%04d.%02d.%02d",$vars[$str."_year"],
$vars[$str."_month"],$vars[$str."_day"]);
$xdate = mktime(0,0,0,$vars[$str."_month"],$vars[$str."_day"],
$vars[$str."_year"]);

$str="ldate";
$vars[$str] = sprintf("%04d.%02d.%02d",$vars[$str."_year"],
$vars[$str."_month"],$vars[$str."_day"]);
$ldate = mktime(0,0,0,$vars[$str."_month"],$vars[$str."_day"],
$vars[$str."_year"]);

// -- Begin Prepare Insert -------- //
$ff=array();
$ff[]="firstname";
$ff[]="lastname";
$ff[]="tel_phone";
$ff[]="email";

$ff[]="accommodation";
$ff[]="sdate_month";
$ff[]="sdate_day";
$ff[]="sdate_year";
$ff[]="xdate_month";
$ff[]="xdate_day";
$ff[]="xdate_year";
$ff[]="ldate_month";
$ff[]="ldate_day";
$ff[]="ldate_year";
$ff[]="diet_requirements";

$ff[]="comments";

$r = array();
foreach ($ff as $x)
$r[$x]=$vars[$x];
// -- End Prepare Insert ---------- //


// add to db, show thanks page
$r["uid"] = sprintf("%010d",fcounter2($db_type,$db,
$db_table,"1000000000"));
$r["adate"] = date("Y.m.d");
$r["atime"] = date("H.i");
$r["mdate"] = date("Y.m.d");
$r["mtime"] = date("H.i");

fdb_insert($db_type,$db,$db_table,$r);


// build headers
$header = sprintf("From: %s\n",$email_from);

if (!empty($mail_page))
{
// build headers
$header .= "MIME-Version: 1.0\n";
$header .= "Content-Type: text/html\n";

ob_start();
include($mail_page);
$message = ob_get_contents();
ob_end_clean();
$message .= "\n";
}
else
{
// build email
$message = "";
$message .= sprintf("Subject: %s\n",$subject);
$message .= "\n";
$message .= sprintf("Date: %s\n",$r["adate"]);
$message .= sprintf("Company: %s\n",$r["company"]);
$message .= sprintf("First Name: %s\n",$r["firstname"]);
$message .= sprintf("Last Name: %s\n",$r["lastname"]);
$message .= sprintf("Email: %s\n",$r["email"]);
$message .= sprintf("Phone: %s\n",$r["tel_phone"]);
$message .= "\n";
$message .= sprintf("Mailing: %s\n",$r["mailing"]);
$message .= "\n";
$message .= sprintf("Comments:\n",$r["comments"]);
$message .= sprintf("%s\n",$r["comments"]);
$message .= "\n";
}

// send email
foreach ($send_to as $dest)
mail($dest,$email_subject,$message,$header);

echo "$dest.\" \".$email_subject.\" \".$message.\" \".$header
\n"; //test code 09/27/07

mail($r["email"],$email_subject,$message,$header);

include($thanks_page);
}
}

//----------------------------------------------------------
//------------[ Functions ]---------------------------------
//----------------------------------------------------------

function fcheckbox($name,$value)
{
global $vars;
if ($vars[$name] == $value)
return " checked";

return "";
}

//----------------------------------------------------------
//------------[ End ]---------------------------------------
//----------------------------------------------------------

?>

 

Navigation:

[Reply to this message]


Удаленная работа для программистов  •  Как заработать на Google AdSense  •  England, UK  •  статьи на английском  •  PHP MySQL CMS Apache Oscommerce  •  Online Business Knowledge Base  •  DVD MP3 AVI MP4 players codecs conversion help
Home  •  Search  •  Site Map  •  Set as Homepage  •  Add to Favourites

Copyright © 2005-2006 Powered by Custom PHP Programming

Сайт изготовлен в Студии Валентина Петручека
изготовление и поддержка веб-сайтов, разработка программного обеспечения, поисковая оптимизация