45

I'm using the mail() basic example modified slightly for my user id and I'm getting the error "Mailer Error: Could not instantiate mail function"

if I use the mail function -

mail($to, $subject, $message, $headers);

it works fine, though I'm having trouble sending html, which is why I'm trying PHPMailer.

this is the code:

<?php
require_once('../class.phpmailer.php');

    $mail             = new PHPMailer(); // defaults to using php "mail()"
    $body             = file_get_contents('contents.html');
    $body             = eregi_replace("[\]",'',$body);
        print ($body ); // to verify that I got the html
    $mail->AddReplyTo("reply@domain.com","my name");
    $mail->SetFrom('from@domain.com', 'my name');
    $address = "to@domain.com";
    $mail->AddAddress($address, "her name");
    $mail->Subject    = "PHPMailer Test Subject via mail(), basic";
    $mail->AltBody    = "To view the message, please use an HTML compatible email viewer!";
    $mail->MsgHTML($body);
    $mail->AddAttachment("images/phpmailer.gif");      // attachment
    $mail->AddAttachment("images/phpmailer_mini.gif"); // attachment

    if(!$mail->Send()) {
        echo "Mailer Error: " . $mail->ErrorInfo;
    } else {
        echo "Message sent!";
    }
?>
Josh
  • 7,714
  • 5
  • 40
  • 40
sdfor
  • 5,786
  • 11
  • 47
  • 59
  • 1
    Similar question: http://stackoverflow.com/questions/1944631/could-not-instantiate-mail-function-why-this-error-occuring – Mukesh Chapagain Aug 22 '11 at 08:26
  • Than mean PHPmailer try to use build in mail function from PHP not SMTP – user956584 Aug 25 '15 at 19:55
  • 1
    For me it was caused by server problem, I've got a segmentation fault error message via SSH while try to update system (apt-get update), so I reboot VPS and PHPMailer works fine. – Harkály Gergő Jan 16 '17 at 00:22

17 Answers17

32

Try using SMTP to send email:-

$mail->IsSMTP();
$mail->Host = "smtp.example.com";

// optional
// used only when SMTP requires authentication  
$mail->SMTPAuth = true;
$mail->Username = 'smtp_username';
$mail->Password = 'smtp_password';
Mukesh Chapagain
  • 22,983
  • 12
  • 108
  • 114
14

Your code looks good, did you forget to install PostFix on your server?

sudo apt-get install postfix

It worked for me ;)

Cheers

Andrew
  • 13,934
  • 8
  • 78
  • 93
Irwuin
  • 349
  • 2
  • 7
14
$mail->AddAddress($address, "her name");

should be changed to

$mail->AddAddress($address);

This worked for my case..

Avinash
  • 5,734
  • 15
  • 53
  • 93
12

This worked for me

$mail->SetFrom("from@domain.co","my name", 0); //notice the third parameter
Matías Cánepa
  • 5,201
  • 4
  • 49
  • 88
  • 1
    Thank you! For any one who's wondered why, here explains the third parameter: http://develop.wp-a2z.org/oik_api/phpmailersetfrom/ – Walty Yeung Aug 14 '17 at 23:43
  • Wow. I didn't expect this would fix it. @WaltyYeung sadly your link is down. I am still interested in why that works. – miile7 Apr 29 '21 at 20:39
11

You need to make sure that your from address is a valid email account setup on that server.

D.F.
  • 180
  • 1
  • 6
11

If you are sending file attachments and your code works for small attachments but fails for large attachments:

If you get the error "Could not instantiate mail function" error when you try to send large emails and your PHP error log contains the message "Cannot send message: Too big" then your mail transfer agent (sendmail, postfix, exim, etc) is refusing to deliver these emails.

The solution is to configure the MTA to allow larger attachments. But this is not always possible. The alternate solution is to use SMTP. You will need access to a SMTP server (and login credentials if your SMTP server requires authentication):

$mail             = new PHPMailer();
$mail->IsSMTP();                           // telling the class to use SMTP
$mail->SMTPAuth   = true;                  // enable SMTP authentication
$mail->Host       = "mail.yourdomain.com"; // set the SMTP server
$mail->Port       = 26;                    // set the SMTP port
$mail->Username   = "yourname@yourdomain"; // SMTP account username
$mail->Password   = "yourpassword";        // SMTP account password

PHPMailer defaults to using PHP mail() function which uses settings from php.ini which normally defaults to use sendmail (or something similar). In the above example we override the default behavior.

Salman A
  • 229,425
  • 77
  • 398
  • 489
4

The PHPMailer help docs on this specific error helped to get me on the right path.

What we found is that php.ini did not have the sendmail_path defined, so I added that with sendmail_path = /usr/sbin/sendmail -t -i;

Matt Pope
  • 157
  • 1
  • 11
  • For the information of anyone wondering what the `-t -i` is doing there, here's a list of sendmail options http://www.postfix.org/sendmail.1.html – Steven Feb 25 '20 at 10:14
1

Seems in my case it was just SERVER REJECTION. Please check your mail server log / smtp connection accessibility.

Alex
  • 999
  • 1
  • 10
  • 11
1

I had this issue, and after doing some debugging, and searching I realized that the SERVER (Godaddy) can have issues.

I recommend you contact your Web hosting Provider and talk to them about Quota Restrictions on the mail function (They do this to prevent people doing spam bots or mass emailing (spam) ).

They may be able to advise you of their limits, and if you're exceeding them. You can also possibly upgrade limit by going to private server.

After talking with GoDaddy for 15 minutes the tech support was able to resolve this within 20 minutes.

This helped me out a lot, and I wanted to share it so if someone else comes across this they can try this method if all fails, or before they try anything else.

lzoesch
  • 1,113
  • 2
  • 14
  • 29
1

In my case, it was the attachment size limit that causes the issue. Check and increase the size limit of mail worked for me.

fiskcn
  • 11
  • 1
0

An old thread, but it may help someone like me. I resolved the issue by setting up SMTP server value to a legitimate value in PHP.ini

Atif.SQL
  • 1
  • 4
0

I had this issue as well. My solution was to disable selinux. I tried allowing 2 different http settings in selinux (something like httpd_allow_email and http_can_connect) and that didn't work, so I just disabled it completely and it started working.

iAndy
  • 11
  • 3
0

I was having this issue while sending files with regional characters in their names like: VęryRęgióńął file - name.pdf.

The solution was to clear filename before attaching it to the email.

jmarceli
  • 15,970
  • 5
  • 57
  • 57
0

Check if sendmail is enabled, mostly if your server is provided by another company.

Gianluca Demarinis
  • 1,666
  • 2
  • 11
  • 15
0

For what it's worth I had this issue and had to go into cPanel where I saw the error message

"Attention! Please register your email IDs used in non-smtp mails through cpanel plugin. Unregistered email IDs will not be allowed in non-smtp emails sent through scripts. Go to Mail section and find "Registered Mail IDs" plugin in paper_lantern theme."

Registering the emails in cPanel (Register Mail IDs) and waiting 10 mins got mine to work.

Hope that helps someone.

Thomas Byy
  • 3,258
  • 3
  • 16
  • 29
0

My config: IIS + php7.4

I had the same issue as @Salman-A, where small attachments were emailed but large were causing the page to error out. I have increased file and attachments limits in php.ini, but this has made no difference.

Then I found a configuration in IIS(6.0), and increased file limits in there. iis config image

Also here is my mail.php:

use PHPMailer\PHPMailer\PHPMailer;
use PHPMailer\PHPMailer\Exception;
require '../_PHPMailer-master/src/Exception.php';
require '../_PHPMailer-master/src/PHPMailer.php';

try{
    $email = new PHPMailer(true);
    $email->SetFrom('internal@email.com', 'optional name');
    $email->isHTML(true);
    $email->Subject   = 'my subject';
    $email->Body      = $emailContent;
    $email->AddAddress( $eml_to );  
    $email->AddAttachment( $file_to_attach );
    $email->Send();
  }catch(phpmailerException $e){echo $e->errorMessage();}

I hope this helps someone in the future.

michal
  • 187
  • 1
  • 14
-2

We nee to change the values of 'SMTP' in php.ini file php.ini file is located into

EasyPHP-DevServer-14.1VC11\binaries\php\php_runningversion\php.ini