source: hadoop-register/etc/phpMailer/docs/use_gmail.txt @ 57

Last change on this file since 57 was 57, checked in by jazz, 15 years ago
  • 第一版 Hadoop 叢集之帳號申請網頁 by Wade
File size: 1.5 KB
Line 
1<?php
2
3// example on using PHPMailer with GMAIL
4
5include("class.phpmailer.php");
6include("class.smtp.php"); // note, this is optional - gets called from main class if not already loaded
7
8$mail             = new PHPMailer();
9
10$body             = $mail->getFile('contents.html');
11$body             = eregi_replace("[\]",'',$body);
12
13$mail->IsSMTP();
14$mail->SMTPAuth   = true;                  // enable SMTP authentication
15$mail->SMTPSecure = "ssl";                 // sets the prefix to the servier
16$mail->Host       = "smtp.gmail.com";      // sets GMAIL as the SMTP server
17$mail->Port       = 465;                   // set the SMTP port
18
19$mail->Username   = "yourname@gmail.com";  // GMAIL username
20$mail->Password   = "password";            // GMAIL password
21
22$mail->From       = "replyto@yourdomain.com";
23$mail->FromName   = "Webmaster";
24$mail->Subject    = "This is the subject";
25$mail->AltBody    = "This is the body when user views in plain text format"; //Text Body
26$mail->WordWrap   = 50; // set word wrap
27
28$mail->MsgHTML($body);
29
30$mail->AddReplyTo("replyto@yourdomain.com","Webmaster");
31
32$mail->AddAttachment("/path/to/file.zip");             // attachment
33$mail->AddAttachment("/path/to/image.jpg", "new.jpg"); // attachment
34
35$mail->AddAddress("username@domain.com","First Last");
36
37$mail->IsHTML(true); // send as HTML
38
39if(!$mail->Send()) {
40  echo "Mailer Error: " . $mail->ErrorInfo;
41} else {
42  echo "Message has been sent";
43}
44
45?>
Note: See TracBrowser for help on using the repository browser.