| | |
Need help NEWSLETTER
![]() |
•
•
Join Date: Oct 2007
Posts: 16
Reputation:
Solved Threads: 0
Please need help I have an code for send a newsletter by the help of a good friend, but when I tried looks fine and when I open the email I received contain the newsletter picture are not appeared all necessary image are also uploaded in the same folder.
PHP CODE:
<?php
$file = 'newsletter.html';
$open = fopen($file, 'r');
$read = fread($open, filesize($file));
fclose($open);
$message =<<<MES
$read
MES;
$from = 'sender';
$subject = 'Newsletter';
$headers = "From: $from\r\n";
$headers .= 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
$hostname='h41mysql59.secureserver.net';
$username='qwertyuiop';
$password='*****';
$dbname='qwertyuiop';
$usertable='email';
$yourfield = 'email';
$con = mysql_connect("$hostname","$username","$password");
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
$database = mysql_select_db('qwertyuiop', $con);
if (!$database) {
echo "DATABASE COULDN'T BE SELECTED";
}
$sql = "SELECT * FROM email";
$query = mysql_query($sql);
while ($row = mysql_fetch_assoc($query)) {
$to = $row['email'];
$mail = mail($to, $subject, $message, $headers);
}
if ($mail) {
echo 'All (' . mysql_num_rows($query) . ') Messages sent successfully';
}
mysql_close($con);
?>
NEWSLETTER HTML CODE
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>sample</title>
<style type="text/css">
<!--
body {
background-color: #000066;
}
.style1 {
color: #FFFFFF;
font-size: xx-large;
}
.style2 {
font-size: 12px;
color: #CCCCCC;
}
-->
</style></head>
<body>
<table width="596" height="248" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<th scope="row"><p class="style1">Sample</p>
<p class="style1"> </p>
</th>
</tr>
</table>
<table width="500" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<th background="images/newsletter_01.gif" scope="row"><p> </p>
<p> </p>
<p> </p>
<p> </p></th>
</tr>
</table>
</body>
</html>
PHP CODE:
<?php
$file = 'newsletter.html';
$open = fopen($file, 'r');
$read = fread($open, filesize($file));
fclose($open);
$message =<<<MES
$read
MES;
$from = 'sender';
$subject = 'Newsletter';
$headers = "From: $from\r\n";
$headers .= 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
$hostname='h41mysql59.secureserver.net';
$username='qwertyuiop';
$password='*****';
$dbname='qwertyuiop';
$usertable='email';
$yourfield = 'email';
$con = mysql_connect("$hostname","$username","$password");
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
$database = mysql_select_db('qwertyuiop', $con);
if (!$database) {
echo "DATABASE COULDN'T BE SELECTED";
}
$sql = "SELECT * FROM email";
$query = mysql_query($sql);
while ($row = mysql_fetch_assoc($query)) {
$to = $row['email'];
$mail = mail($to, $subject, $message, $headers);
}
if ($mail) {
echo 'All (' . mysql_num_rows($query) . ') Messages sent successfully';
}
mysql_close($con);
?>
NEWSLETTER HTML CODE
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>sample</title>
<style type="text/css">
<!--
body {
background-color: #000066;
}
.style1 {
color: #FFFFFF;
font-size: xx-large;
}
.style2 {
font-size: 12px;
color: #CCCCCC;
}
-->
</style></head>
<body>
<table width="596" height="248" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<th scope="row"><p class="style1">Sample</p>
<p class="style1"> </p>
</th>
</tr>
</table>
<table width="500" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<th background="images/newsletter_01.gif" scope="row"><p> </p>
<p> </p>
<p> </p>
<p> </p></th>
</tr>
</table>
</body>
</html>
•
•
Join Date: Jan 2008
Posts: 57
Reputation:
Solved Threads: 5
If I understand correctly...
The php script works fine and you received the newsletter.
The newsletter is formatted properly with the HTML.
The problem is that the pictures aren't appearing when you read the newsletter in your e-mail.
If that's the case, then you're problem may be in the way you specify the source for your images. In the HTML, you've got a reference to one image as: "images/newsletter_01.gif"
This type of relative URL won't work in an e-mail. The browser is looking for the file "images/newsletter_01.gif" inside the folder that the e-mail script is executing.
If you replace all of your relative URLs for images with absolute URLs (i.e. "http://www.mydomain.com/images/newsletter_01.gif"), they should appear correctly.
If that's not the problem, also make sure that your e-mail reader isn't blocking the images. I know that gmail blocks images by default. Some other web-based e-mail readers probably do the same thing.
Good luck,
- Walkere
The php script works fine and you received the newsletter.
The newsletter is formatted properly with the HTML.
The problem is that the pictures aren't appearing when you read the newsletter in your e-mail.
If that's the case, then you're problem may be in the way you specify the source for your images. In the HTML, you've got a reference to one image as: "images/newsletter_01.gif"
This type of relative URL won't work in an e-mail. The browser is looking for the file "images/newsletter_01.gif" inside the folder that the e-mail script is executing.
If you replace all of your relative URLs for images with absolute URLs (i.e. "http://www.mydomain.com/images/newsletter_01.gif"), they should appear correctly.
If that's not the problem, also make sure that your e-mail reader isn't blocking the images. I know that gmail blocks images by default. Some other web-based e-mail readers probably do the same thing.
Good luck,
- Walkere
You should embed your flash file in your html page.
Ignorance is definitely not bliss!
*PM asking for help will be ignored*
*PM asking for help will be ignored*
![]() |
Similar Threads
- Selling advertising on an e-newsletter (Advertising Sales Strategies)
- Please review my flash CV (Website Reviews)
- form to get e-mail and name --- for newsletter (HTML and CSS)
- Php newsletter error (PHP)
- Newsletter pop-under / Good or bad idea? (Website Reviews)
Other Threads in the PHP Forum
- Previous Thread: help
- Next Thread: Replacing 2 characters with with preg_replace
Views: 1407 | Replies: 4
| Thread Tools | Search this Thread |
Tag cloud for PHP
.htaccess ajax apache api archive array arrays beginner binary broken cakephp check checkbox class classes cms code combobox cron curl database date development directory display download dynamic echo email error file files folder form forms function functions google header hosting htaccess html image include insert ip java javascript joomla jquery limit link list login loop mail mlm mod_rewrite multiple mysql oop parse password paypal pdf php problem query radio recursion regex remote results rewrite script search select server sessions sms source space speed sql storage syntax table tutorial unicode update updates upload url user validation validator variable video web xml






