A で始まる:
$AltBody -- 属性
From: PHPMailer: $AltBody
File: class.phpmailer .php
説明: この属性の設定は、メール本文の HTML をサポートしない代替表示です
AddAddress -- メソッド
:PHPMailer::AddAddress() から、ファイル: class.phpmailer .php
説明: 受信者を追加します。パラメータ 1 は受信者の電子メール アドレス、パラメータ 2 は受信者の役職です。たとえば、AddAddress("to@163.com","to name") ですが、パラメーター 2 はオプションであり、AddAddress(to@163.com) も可能です。
関数プロトタイプ: public function AddAddress($address, $name = '') {}
AddAttachment --method
From: PHPMailer::AddAttachment()
File: class.phpmailer .php。
手順: 添付ファイルを追加します。
パラメータ: パス、名前、エンコーディング、タイプ。このうち、パスは必須で、その他はオプションです。関数プロトタイプ:
AddAttachment($path, $name = '', $encoding = 'base64', $type = 'application/octet-stream'){}
AddBCC --Method
From: PHPMailer::AddBCC()
File: class.phpmailer .php
Description: ブラインド コピーを追加します。 CCとBCCの違いについては、「SMTP送信におけるBCCとCCの違い」をご覧ください。
パラメータ 1 はアドレス、パラメータ 2 は名前です。このメソッドは win32 での SMTP のみをサポートし、メール関数はサポートしないことに注意してください。
関数プロトタイプ: public function AddBCC($address, $name = ''){}
AddCC -- メソッド
from: PHPMailer ::AddCC()
ファイル: class.phpmailer .php
説明: CC を追加します。 CCとBCCの違いについては、「SMTP送信におけるBCCとCCの違い」をご覧ください。
パラメータ 1 はアドレス、パラメータ 2 は名前です。このメソッドは win32 での SMTP のみをサポートし、メール関数はサポートしないことに注意してください。
関数プロトタイプ: public function AddCC($address, $name = '') {}
AddCustomHeader --method
From: PHPMailer::AddCustomHeader()
File: class.phpmailer .php
説明: カスタム電子メール ヘッダーを追加します。
パラメータはヘッダー情報です
関数プロトタイプ: public function AddCustomHeader($custom_header){}
AddEmbeddedImage -- メソッド
From: PHPMailer::AddEmbeddedImage()
File: class.phpmailer .php
説明: 埋め込み画像を追加します
パラメータ: path、戻りハンドル [、名前、エンコーディング、タイプ]
関数プロトタイプ: public function AddEmbeddedImage($path, $cid, $name = '', $encoding = 'base64', $type = 'application/octet- stream') {}
ヒント: AddEmbeddedImage(PICTURE_PATH. "index_01.jpg ", "img_01 ", "index_01.jpg ");
HTML 内の を引用します
AddReplyTo - -メソッド
From: PHPMailer::AddReplyTo()
ファイル: class.phpmailer .php
手順: 「Reply-to」などの返信タグを追加
パラメータ 1 アドレス、パラメータ 2 名
関数プロトタイプ: public function AddReplyTo($address , $name = '') {}
AddStringAttachment -Method
From: PHPMailer::AddStringAttachment()
File: class.phpmailer .php
Description: 文字列またはバイナリ添付ファイル (-filesystem 以外) をリストに追加します。 )
パラメータ: 文字列、ファイル名 [、エンコーディング、タイプ]
関数プロトタイプ: public function AddStringAttachment($string, $filename, $encoding = 'base64', $type = 'application/ octet-stream') {}
Authenticate --メソッド
From: SMTP::Authenticate()
File: class.smtp.php
Description: SMTP 認証を開始します。Hello() の後に呼び出す必要があります。認証が成功した場合は true を返します。
パラメータ 1 ユーザー名、パラメータ2 パスワード
関数プロトタイプ: public function Authenticate($username, $password) {}
B から始まります
$Body --property
From: PHPMailer: $Body
File: phpmailer .php
Description:電子メールのコンテンツ、HTML またはテキスト形式
C
$CharSet で開始 -- 属性
From: PHPMailer: $CharSet
File: class.phpmailer .php
Description: 電子メールのエンコーディング、デフォルトは iso-8859 -1 です
$confirmReadingTo -- 属性
From: PHPMailer: $confirmReadingTo ファイル class.phpmailer .php
説明: 領収書?
$ContentType -- 属性
From: PHPMailer: $ContentType
File: class.phpmailer .php
説明: ドキュメントのタイプ、デフォルトは "text/plain"
$CRLF -- 属性
From: PHPMailer: $ContentType
File: class.phpmailer .php
Description: SMTP 返信終了区切り文字 (SMTP 返信行の終わり?)
class.phpmailer .php --Object
From: class.phpmailer .php
File: class.phpmailer .php
説明: phpmailer オブジェクト
class.smtp.php --オブジェクト
From: class.smtp.php ファイル: class.smtp.php
説明: SMTP 関数オブジェクト
ClearAddresses --Method
From: PHPMailer::ClearAddresses ( )
ファイル: class.phpmailer .php
説明: 受信者をクリアし、次の送信に備えます。戻り値の型は void です。
ClearAllRecipients --メソッド
From: PHPMailer::ClearAllRecipients()
File: class.phpmailer .php
Description: CC (CC) と BCC (Bcc) を含むすべての受信者をクリアします
ClearAttachments --メソッド
From: PHPMailer::ClearAttachments()
ファイル: class.phpmailer .php
説明: 添付ファイルをクリア
ClearBCCs --Method
From: PHPMailer::ClearBCCs() ファイル class.phpmailer .php
説明: BCC をクリア ( Bcc)
ClearCustomHeaders --Method
From: PHPMailer ::ClearCustomHeaders()
File: class.phpmailer .php
Description: カスタムヘッダーをクリア
ClearReplyTos --Method
From: PHPMailer ::ClearReplyTos ()
File: class .phpmailer .php
説明: 相手に明確に返信します
Close --Method
From: SMTP::Close()
File: class.smtp.php
説明: SMTP 接続を閉じる
Connect - - メソッド
from : SMTP::Connect()
ファイル: class.smtp.php
説明: SMTP 接続を確立する Mailer.html
$ContentType -- プロパティ
From: PHPMailer: $ContentType
ファイル: class.phpmailer
Description:ドキュメントのタイプ、デフォルトは「text/plain」です
D は
$do_debug --Attribute で始まります
From: SMTP: $do_debug
File: class.smtp.php
Description: SMTP デバッグ出力
Data - メソッド
From: SMTP: $Data()
File: class.smtp.php
Description: データ コマンドとメッセージ情報をサーバーに送信します (sendsthemsg_datatotheserver)
E
$Encoding --Attribute
From: PHPMailer: $ Encoding
File: class.phpmailer .php
Description: 電子メールのエンコーディング方法を設定します。オプション: "8bit"、"7bit"、"binary"、"base64"、および "quoted-printable"
$ErrorInfo。 -- 属性
From: PHPMailer: $ErrorInfo
ファイル: class.phpmailer .php
説明: 電子メール SMTP 内の最後のエラー メッセージを返します
Expand -- メソッド
From: SMTP::Expand()
ファイル: class. smtp.php
説明: メーリング リスト内のすべてのユーザーを返します。成功した場合は配列を返し、それ以外の場合は false を返します (Expand は名前を取得し、サーバーにメンバーのメンバー全員をリストするように要求します。Expand は戻り、その結果の配列が返されます。エラーが発生します)住所
$ FromName -- 属性
from: PHPMailer ::$FromName
ファイル: class.phpmailer .php
説明: 送信者の名前
H で始まる:
$Helo -- 属性
from: PHPMailer ::$Helo
ファイル: class .phpmailer .php
説明: SMTPHelo を設定します。デフォルトは $Hostname(SetstheSMTPHELOofthemessage(Defaultis$Hostname) です。)
$Host --property
From: PHPMailer::$Host
File: class.phpmailer .php
説明: SMTP サーバーを設定します。形式は次のとおりです: ホスト名 [ポート番号] (smtp1.example.com:25 や smtp2.example.com など) は有効です
$Hostname --attribute
From: PHPMailer::$Hostname
ファイル: class.phpmailer .php
説明: Message-Id と andReceivedheaders に設定されたホスト名は、$Helo でも使用されます。空の場合、デフォルトは SERVER_NAME または 'localhost.localdomain' です
Hello --メソッド
From: SMTP::Hello()
File: class.smtp.php
Description: HELO コマンドを SMTP サーバーに送信します
Help -- メソッド
from: SMTP::Help()
ファイル: class.smtp.php
説明: キーワードがある場合、キーワードのヘルプ情報を取得します
I で始まる:
IsError --Method
from: PHPMailer : :IsError ()
ファイル: class.phpmailer .php
説明: エラーが発生したかどうかを返します
IsHTML --メソッド
From: PHPMailer::IsHTML()
ファイル: class.phpmailer .php
説明: 文字が発生したかどうかを設定しますHTML形式です
IsMail -- メソッド
from: PHPMailer ::IsMail()
ファイル: class.phpmailer .php
説明: メール送信にphpのmail関数を使用するかどうかを設定します
IsQmail -- メソッド
from: PHPMailer ::IsQmail() ... メールの送信
IsSMTP--Method
From: PHPMailer::IsSMTP()
File: class.phpmailer .php
Description: メール送信に SMTP を使用するかどうか
M で始める:
$Mailer--属性
From: PHPMailer ::$Mailer
File: class.phpmailer .php
Description: 送信メソッドの 1 つ ("mail"、"sendmail"、または "smtp")。 - メソッド
from: SMTP::Mail ()
ファイル: class.smtp.php
説明: $from のメールアドレスから処理を開始し、true または false を返します。true の場合、送信を開始します
N で開始:
Noop-- Method
From: SMTP::Noop()
File: class.smtp.php
Description: NOOP コマンドを SMTP サーバーに送信します
Start with P :
$Password -- 属性
From: PHPMailer ::$Password
ファイル: class.phpmailer .php
説明: SMTP パスワードを設定します
$PluginDir -- 属性
From: PHPMailer ::$PluginDir
ファイル: class phpmailer .php
説明: phpmailer のプラグイン ディレクトリを設定します。これは、smtpclass が phpmailer ディレクトリ
$Port --property にない場合にのみ有効です。
From: PHPMailer::$Port
File: class.phpmailer 。 php
説明: SMTP ポート番号を設定します。
$Priority --Attribute
From: PHPMailer::$Priority
File: class.phpmailer .php
説明: 電子メール配信の優先順位を設定します。 1=緊急、3=通常、5=緊急ではない
PHPMailer --オブジェクト
from: PHPMailer
File: class.phpmailer .php
Description: PHPMailer -PHPemailtransportclass
Q から開始
Quit --Method
from: SMTP ::Quit()
ファイル: class.smtp.php
説明: エラーが発生しない場合、Quit コマンドをサーバーに送信します。次に靴下を閉じます。それ以外の場合は、$close_on_error が true になります。
R
Recipient --Method で開始します。
From: SMTP::Recipient()
File: class.smtp.php
Description: To を使用して RCPT コマンドを SMTP に送信します、パラメーターは次のとおりです: $to
Reset --Method
From: SMTP::Reset()
File: class.smtp.php
Description: RSET コマンドを送信して、進行中の転送をキャンセルします。成功した場合は true、それ以外の場合は false を返します。
S は次で始まります:
$Sender --property
From: PHPMailer::$Sender
File: class.phpmailer.php
Description: SetstheSenderemail(Return-Path)ofthemessage.Ifnotempty,willbesentvia -ftosendmailoras'MAILFROM'insmtpmode.
$Sendmail --Properties
From: PHPMailer ::$Sendmail
File: class.phpmailer .php
Description: 送信プログラムのディレクトリを設定します
$SMTPAuth --Properties
from: PHPMailer ::$SMTPAuth
ファイル: class.phpmailer .php
説明: SMTP に認証が必要かどうかを設定し、ユーザー名変数とパスワード変数を使用します
$SMTPDebug --attributes
From: PHPMailer ::$SMTPDebug
ファイル: class.phpmailer .php
説明: SMTP デバッグ出力を行うかどうかを設定します。
$SMTPKeepAlive --property
From: PHPMailer::$SMTPKeepAlive
File: class.phpmailer .php
説明: 送信のたびに接続を閉じないでください。 true の場合、接続を閉じるには SmtpClose() を使用する必要があります
$SMTP_PORT --property
From: SMTP::$SMTP_PORT
File: class.smtp.php
Description: SMTP ポートを設定します
$Subject --property
From: PHPMailer::$Subject
File: class.phpmailer .php
Description: レターの件名を設定します
Send --method
From: SMTP::Send()
File: class.smtp.php
Description : From 指定したメールアドレスにメール送信を開始します
Send --Method
From: PHPMailer::Send()
File: class.phpmailer .php
手順: メールを作成し、送信プログラムを開発します。送信が失敗した場合は false が返されます。ErrorInfo を使用してエラー メッセージを表示してください。
SendAndMail --Method
From: SMTP::SendAndMail()
File: class.smtp.php
手順: 指定されたアドレスから電子メールを開始しますメールアドレス メール送信
SendOrMail --Method
From: SMTP::SendOrMail()
File: class.smtp.php
説明: 指定したメールアドレスからメール送信を開始
SetLanguage --Method
From: PHPMailer: :SetLanguage ()
ファイル: class.phpmailer .php
説明: phpmailer エラー メッセージの言語タイプを設定します。言語ファイルをロードできない場合は、false が返されます。デフォルトは英語です。
SMTP --Method
From: SMTP。 ::SMTP()
ファイル: class.smtp.php
説明: データが既知の状態になるようにオブジェクトを初期化します
SMTP --Object
From: SMTP
File: class.smtp.php
Description: SMTPオブジェクト
SmtpClose --メソッド
From: PHPMailer::SmtpClose()
File: class.phpmailer .php
Description: アクティブな SMTP がある場合は、SMTP を閉じます。
T で始まる
$Timeout --property
From: PHPMailer::$Timeout
File: class.phpmailer .php
Description: SMTP サーバーのタイムアウトを設定します (単位: 秒)。注: win32 では、この属性は無効です
Turn --Method
From: SMTP::Turn()
File: class.smtp.php
注: これはオプションの SMTP パラメータです。現在、phpmailer はサポートしていません。
$Username --attribute で始まる
U をサポート
From: PHPMailer ::$Username
File: class.phpmailer .php
Description: V で始まる SMTP ユーザー名
を設定します
$Version --attribute
From: PHPMailer::$Version
ファイル: class.phpmailer .php
説明: Phpmailer のバージョンを返す
Verify --method
From: SMTP::Verify()
ファイル: class.smtp.php
説明: サーバー経由ユーザー名が検証されているかどうかを確認します
W で開始します:
$WordWrap --Attribute
From: PHPMailer::$WordWrap
File: class.phpmailer.php
Description: 1 行あたりの最大文字数を設定し、自動的に折り返す数値を超えた後の行。