Changes between Version 80 and Version 81 of ServerIntro


Ignore:
Timestamp:
Jun 6, 2014, 2:27:33 PM (10 years ago)
Author:
Christian Beer
Comment:

updated link to PHPMailer

Legend:

Unmodified
Added
Removed
Modified
  • ServerIntro

    v80 v81  
    226226This uses sendmail.
    227227If this doesn't work, you can use
    228 [https://github.com/Synchro/PHPMailer PHPMailer],
     228[https://github.com/PHPMailer/PHPMailer PHPMailer],
    229229is a very flexible mail-sending mechanism, instead.
    230230To do this:
     
    244244    $mail->SetFrom('[email protected]', 'John Doe');
    245245    $mail->AddReplyTo("[email protected]", "John Doe");
    246     $mail->From = "[email protected]";
    247246    return $mail;
    248247}