extending.html

来自「PHPMailer Full Featured Email Transfer C」· HTML 代码 · 共 30 行

HTML
30
字号
<html><head><title>Examples using phpmailer</title></head><body bgcolor="#FFFFFF"><h2>Examples using phpmailer</h2><h3>1. Advanced Example</h3><p>This demonstrates sending out multiple email messages with binary attachmentsfrom a MySQL database with multipart/alternative support.<p><table cellpadding="4" border="1" width="80%"><tr><td bgcolor="#CCCCCC"><pre>require("class.phpmailer.php");$mail = new phpmailer();$mail->From     = "list@example.com";$mail->FromName = "List manager";$mail->Host     = "smtp1.example.com;smtp2.example.com";$mail->Mailer   = "smtp";@MYSQL_CONNECT("localhost","root","password");@mysql_select_db("my_company");$query

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?