Changes between Version 80 and Version 81 of ServerIntro
- Timestamp:
- Jun 6, 2014, 2:27:33 PM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ServerIntro
v80 v81 226 226 This uses sendmail. 227 227 If this doesn't work, you can use 228 [https://github.com/ Synchro/PHPMailer PHPMailer],228 [https://github.com/PHPMailer/PHPMailer PHPMailer], 229 229 is a very flexible mail-sending mechanism, instead. 230 230 To do this: … … 244 244 $mail->SetFrom('admin@boincproject.com', 'John Doe'); 245 245 $mail->AddReplyTo("admin@boincproject.com", "John Doe"); 246 $mail->From = "admin@boincproject.com";247 246 return $mail; 248 247 }