📄 extending.html
字号:
<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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -