• Where would I go in and change the code to get this to work with Godaddy email and Gmail?
    I have code that works but need to use Contact Form 7 for the CRM plug-in I’m using, or believe me, I wouldn’t have wasted this entire day doing research and trying everything I could find to get the email send to work.
    So if I could just find where to put this code, I’d be set! Thanks.
    $mail = new PHPMailer();
    $mail->IsSMTP();
    $mail->isHTML(true);
    $mail->Host = “smtpout.secureserver.net”;
    $mail->SMTPAuth = true;
    $mail->Port = 25;
    $mail->Username = “[email protected]”;
    $mail->Password = *******;
    $mail->Subject = “Test Email”;
    $mail->SMTPDebug = 1;

  • The topic ‘Where to change email code?’ is closed to new replies.