Topic: SMTP Error for free.fr
An error was encountered
File: ***********/include/email.php
Line: 136
PunBB reported: Could not connect to smtp host "smtp.free.fr" (0) (Success)
You are not logged in. Please login or register.
PunBB Forums → PunBB 1.2 troubleshooting → SMTP Error for free.fr
An error was encountered
File: ***********/include/email.php
Line: 136
PunBB reported: Could not connect to smtp host "smtp.free.fr" (0) (Success)
Have you modified email.php?
Have you modified email.php?
Yes, I modified email.php according to instructions int the 'Newsletter Readme.txt' file ...
#-------[ 1. OPEN ]---------------
#
include/email.php
#
#-------[ 2. FIND ]---------------
#
function pun_mail($to, $subject, $message, $from = '')
#
#-------[ 3. REPLACE WITH ]-------
#
function pun_mail($to, $subject, $message, $from = '', $html = false)
#
#-------[ 4. FIND ]---------------
#
$headers = 'From: '.$from."\r\n".'Date: '.date('r')."\r\n".'MIME-Version: 1.0'."\r\n".'Content-transfer-encoding: 8bit'."\r\n".'Content-type: text/plain; charset='.$lang_common['lang_encoding']."\r\n".'X-Mailer: PunBB Mailer';
#
#-------[ 5. REPLACE WITH ]-------
#
if($html)
{
// HTML headers (thank you php.net documentation)
$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
$headers .= 'From: '.$from."\r\n".'Date: '.date('r')."\r\n".'X-Mailer: PunBB Mailer';
}
else
{
$headers = 'From: '.$from."\r\n".'Date: '.date('r')."\r\n".'MIME-Version: 1.0'."\r\n".'Content-transfer-encoding: 8bit'."\r\n".'Content-type: text/plain; charset='.$lang_common['lang_encoding']."\r\n".'X-Mailer: PunBB Mailer';
}
-------------------------------------------------------------------------------
The name of the free.fr smtp is smtp.free.fr ...
That sounds like a problem with your server: I'd ask your host.
That sounds like a problem with your server: I'd ask your host.
Actually It works without smtp host. I did not specified any one. I use the php function to send emails ... But do you know what are the limits of this choice ? (for How many emails suscribed in the newsletter can I send a message ?)
That depends on your host
PunBB Forums → PunBB 1.2 troubleshooting → SMTP Error for free.fr
Powered by PunBB, supported by Informer Technologies, Inc.