• I have read several posts saying that emailing is not sending with 3.6
    and I found a updated source for class-phpmailer.php.

    But 3.6.1 is not working with replacing class-phpmailer.php

    How can I make wp 3.6.1 email work?

Viewing 16 replies (of 16 total)
  • It’s working for mine at version 3.6 and 3.6.1 also…! Check the following code

    $mail = new PHPMailer();
    $mail->IsSendmail(); // telling the class to use SendMail transport

    $body = $messagehtml;
    $body = eregi_replace(“[\]”,”,$body);

    $mail->SetFrom($from, $current_user->user_firstname .” “.$current_user->user_lastname);
    $mail->AddReplyTo($from, $current_user->user_firstname .” “.$current_user->user_lastname);

    $address = $to;
    $mail->AddAddress($address, “”);

    $mail->Subject = $subject;
    $mail->MsgHTML($body);

    return $mail->Send();

Viewing 16 replies (of 16 total)
  • The topic ‘3.6.1 is NOT working with emailing (class-phpmailer.php)’ is closed to new replies.