Hello
I need help please
I use PHPMailer-Fe.php and i have this error
Fatal error: Call to undefined method PHPMailer::SetF rom() in
Code:
    if (isset($_POST['fixedFromEmail'])) {
      if (isset($_POST['fixedFromName']) && trim($_POST['fixedFromName']) == '') {
        $_POST['fixedFromName'] = $_POST['fixedFromEmail'];
      }
      if (stristr($mail->Version,'5.1')) {
        $mail->SetFrom($_POST['fixedFromEmail'],$_POST['fixedFromName']);
...