Jump to content

Problem with PEAR Mail - Please Help!!!!


Recommended Posts

I am using PEAR Mail to send an email through a remote email server. When I run the following code the email goes through successfully, but I get the following error:

********************************************************

Email sent successfully!PHP Notice: Only variable references should be returned by reference in C:\php\PEAR\pear\Mail\mime.php on line 375 PHP Notice: Only variable references should be returned by reference in C:\php\PEAR\pear\Mail\mime.php on line 593

How do I fix this? (PS: I have really no experience with PEAR and am amazed I got this far)


********************************************************

Thanks in advance,

Here's my code:

<?php
require "Mail.php";
require "Mail/mime.php";

$from = "Test Email<autoemail@somedomain.com>";
$to="email1<email1@somedomain.com>";
$cc="email2<email2@somedomain.com>";
$subject="Sending e-mails from PEAR::Mail";
$headers=array('From'=>$from,'To'=>$to,'Cc'=>$cc,'Subject'=>$subject);
$host = "mail.somedomain.com";
$username ="account@somedomain.com";
$password ="password";

$smtp = Mail::factory('smtp',array('host'=>$host,'auth'=>true,'username'=>$username,'password'=>$password));

$mime=new Mail_mime();

$txtBody = <<< BODY
Hello,

This is a test email sent from the PEAR::Mail Class.

BODY;

$mime->setTXTBody($txtBody);

$htmlBody=<<< BODY
<html><body>
<h1>Hello,</h1><br>
<br>
This is a test email sent from the PEAR::Mail Class.<br>
</body></html>
BODY;

$mime->setHTMLBody($htmlBody);

$body = $mime->get();
$headers=$mime->headers($headers);

$mail=$smtp->send($to,$headers,$body);


// test file to send an email direct from the server

echo "Email sent successfully!";

?>

Link to comment
Share on other sites

This is a bug: [a href=\"http://pear.php.net/bugs/bug.php?id=5333\" target=\"_blank\"]http://pear.php.net/bugs/bug.php?id=5333[/a]

That page says to try the latest version in CVS: [a href=\"http://cvs.php.net/viewcvs.cgi/pear/Mail_Mime/\" target=\"_blank\"]http://cvs.php.net/viewcvs.cgi/pear/Mail_Mime/[/a]
Link to comment
Share on other sites

[!--quoteo(post=372302:date=May 8 2006, 07:48 AM:name=kanikilu)--][div class=\'quotetop\']QUOTE(kanikilu @ May 8 2006, 07:48 AM) [snapback]372302[/snapback][/div][div class=\'quotemain\'][!--quotec--]
This is a bug: [a href=\"http://pear.php.net/bugs/bug.php?id=5333\" target=\"_blank\"]http://pear.php.net/bugs/bug.php?id=5333[/a]

That page says to try the latest version in CVS: [a href=\"http://cvs.php.net/viewcvs.cgi/pear/Mail_Mime/\" target=\"_blank\"]http://cvs.php.net/viewcvs.cgi/pear/Mail_Mime/[/a]
[/quote]


[b]Issue Fixed !!!!!!!!! Thank You !!!!!!!!!!!!!!!!![/b]
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.