par
skystef » 12 avr. 2006, 11:21
Bon j'ai mis les deux class (class.smtp.php et class.phpmaile.php) dans la racine du site, j'ai ajouté le code comme dans le readme
Code : Tout sélectionner
<?php
require("class.phpmailer.php");
$mail = new PHPMailer();
$mail->IsSMTP(); // set mailer to use SMTP
$mail->Host = "smtp1.example.com;smtp2.example.com"; // specify main and backup server
$mail->SMTPAuth = true; // turn on SMTP authentication
$mail->Username = "jswan"; // SMTP username
$mail->Password = "secret"; // SMTP password
$mail->From = "[email protected]";
$mail->FromName = "Mailer";
$mail->AddAddress("[email protected]", "Josh Adams");
$mail->AddAddress("[email protected]"); // name is optional
$mail->AddReplyTo("[email protected]", "Information");
$mail->WordWrap = 50; // set word wrap to 50 characters
$mail->AddAttachment("/var/tmp/file.tar.gz"); // add attachments
$mail->AddAttachment("/tmp/image.jpg", "new.jpg"); // optional name
$mail->IsHTML(true); // set email format to HTML
$mail->Subject = "Here is the subject";
$mail->Body = "This is the HTML message body <b>in bold!</b>";
$mail->AltBody = "This is the body in plain text for non-HTML mail clients";
if(!$mail->Send())
{
echo "Message could not be sent. <p>";
echo "Mailer Error: " . $mail->ErrorInfo;
exit;
}
echo "Message has been sent";
?>
en modifiant certaines choses bien sur...
et j'obtiens ça :
Warning: fputs(): supplied argument is not a valid stream resource in c:\program files\easyphp1-8\www\v1\class.smtp.php on line 146
Warning: fgets(): supplied argument is not a valid stream resource in c:\program files\easyphp1-8\www\v1\class.smtp.php on line 1024
Message could not be sent.
Mailer Error: Language string failed to load:
[email protected]
Quelqu'un peut-il m'aider?
Bon j'ai mis les deux class (class.smtp.php et class.phpmaile.php) dans la racine du site, j'ai ajouté le code comme dans le readme
[code]<?php
require("class.phpmailer.php");
$mail = new PHPMailer();
$mail->IsSMTP(); // set mailer to use SMTP
$mail->Host = "smtp1.example.com;smtp2.example.com"; // specify main and backup server
$mail->SMTPAuth = true; // turn on SMTP authentication
$mail->Username = "jswan"; // SMTP username
$mail->Password = "secret"; // SMTP password
$mail->From = "
[email protected]";
$mail->FromName = "Mailer";
$mail->AddAddress("
[email protected]", "Josh Adams");
$mail->AddAddress("
[email protected]"); // name is optional
$mail->AddReplyTo("
[email protected]", "Information");
$mail->WordWrap = 50; // set word wrap to 50 characters
$mail->AddAttachment("/var/tmp/file.tar.gz"); // add attachments
$mail->AddAttachment("/tmp/image.jpg", "new.jpg"); // optional name
$mail->IsHTML(true); // set email format to HTML
$mail->Subject = "Here is the subject";
$mail->Body = "This is the HTML message body <b>in bold!</b>";
$mail->AltBody = "This is the body in plain text for non-HTML mail clients";
if(!$mail->Send())
{
echo "Message could not be sent. <p>";
echo "Mailer Error: " . $mail->ErrorInfo;
exit;
}
echo "Message has been sent";
?>
[/code]
en modifiant certaines choses bien sur...
et j'obtiens ça :
Warning: fputs(): supplied argument is not a valid stream resource in c:\program files\easyphp1-8\www\v1\class.smtp.php on line 146
Warning: fgets(): supplied argument is not a valid stream resource in c:\program files\easyphp1-8\www\v1\class.smtp.php on line 1024
Message could not be sent.
Mailer Error: Language string failed to load:
[email protected]Quelqu'un peut-il m'aider?