Edit: I forgot I\'d created the SendMail();
function myself, which is why the explanation doesn\'t mention at first what it does.
I\'m having s
You haven't posted this code that lets me make this a complete conclusion, but from the Exception and the way you've defined an overriding class inside a function, you probably have class.phpmailer.php
loading every time like this:
require('class.phpmailer.php');
or
include('class.phpmailer.php');
You should change that line to
require_once('class.phpmailer.php');
The reason you need to change it to require_once
is so that PHP will not load the class file the second time when you try to create the new/second PHPMailer
class. Otherwise, the line class PHPMailer
throws the __clone()
exception.