>  기사  >  백엔드 개발  >  my heart will go on 가사 PHPMailer 중국어 지침 요약

my heart will go on 가사 PHPMailer 중국어 지침 요약

WBOY
WBOY원래의
2016-07-29 08:41:42997검색

A로 시작:
$AltBody --Attribute
From: PHPMailer: $AltBody
File: class.phpmailer .php
설명: 이 속성의 설정은 HTML을 지원하지 않는 대체 디스플레이입니다. 이메일 본문
AddAddress --Method
from: PHPMailer::AddAddress(), file: class.phpmailer.php
설명: 수신자를 추가합니다. 매개변수 1은 수신자의 이메일 주소이고, 매개변수 2는 수신자의 직함입니다. 예를 들어 AddAddress("to@163.com","to name")이지만 매개 변수 2는 선택 사항이며 AddAddress(to@163.com)도 가능합니다.
함수 프로토타입: 공용 함수 AddAddress($address, $name = '') {}
AddAttachment --method
From: PHPMailer::AddAttachment()
파일: class.phpmailer .php.
지침: 첨부 파일을 추가하세요.
매개변수: 경로, 이름, 인코딩, 유형. 그 중 경로는 필수이고 나머지는 선택사항입니다
함수 프로토타입:
AddAttachment($path, $name = '', $encoding = 'base64', $type = 'application/octet-stream' ){ }
AddBCC --Method
보낸 사람: PHPMailer ::AddBCC()
파일: class.phpmailer .php
설명: BCC를 추가합니다. CC와 BCC의 차이점은 [SMTP 전송에서 BCC와 CC의 차이점]을 참조하세요.
매개변수 1은 주소, 매개변수 2는 이름입니다. 이 메서드는 win32에서 SMTP만 지원하고 메일 기능은 지원하지 않습니다.
함수 프로토타입: 공용 함수 AddBCC($address, $name = ''){}
AddCC -- 메서드
출처: PHPMailer : :AddCC()
파일: class.phpmailer .php
설명: CC를 추가합니다. CC와 BCC의 차이점은 [SMTP 전송에서 BCC와 CC의 차이점]을 참조하세요.
매개변수 1은 주소, 매개변수 2는 이름입니다. 이 방법은 win32에서 SMTP만 지원하고 메일 기능은 지원하지 않습니다.
함수 프로토타입: 공용 함수 AddCC($address, $name = '') {}
AddCustomHeader --Method
From: PHPMailer::AddCustomHeader()
File: class.phpmailer.php
설명: 사용자 지정 이메일 헤더를 추가합니다.
매개변수는 헤더 정보입니다
함수 프로토타입: public function AddCustomHeader($custom_header){}
AddEmbeddedImage -- 메서드
From: PHPMailer::AddEmbeddedImage()
파일: class.phpmailer .php
설명: 삽입된 이미지 추가
매개변수: 경로, 반환 핸들 [, 이름, 인코딩, 유형]
함수 프로토타입: 공용 함수 AddEmbeddedImage($path, $cid, $name = '', $encoding = 'base64', $type = 'application/octet-stream') {}
힌트: AddEmbeddedImage(PICTURE_PATH. "index_01.jpg ", "img_01 ", "index_01.jpg ")
In html에서 참조됨
AddReplyTo -- 메소드
출처: PHPMailer:: AddReplyTo()
파일: class.phpmailer .php
설명: 답글 추가 "Reply-to"와 같은 레이블
매개변수 1 주소, 매개변수 2 이름
함수 프로토타입: public function AddReplyTo($address, $name = '') {}
AddStringAttachment - 메소드
from : PHPMailer::AddStringAttachment()
파일: class.phpmailer .php
설명: 문자열 또는 바이너리 첨부 파일(비파일 시스템)을 목록에 추가합니다.?)
매개변수: 문자열, 파일 이름 [, 인코딩 , type]
함수 프로토타입: public function AddStringAttachment($string, $filename, $encoding = 'base64', $type = 'application/octet-stream') {}
Authenticate --Method
from : SMTP::Authenticate()
파일: class.smtp.php
설명: SMTP 인증을 시작합니다. Hello() 이후에 호출해야 합니다. 인증에 성공하면 true를 반환합니다.
매개변수 1 사용자 이름, 매개변수 2 비밀번호
함수 프로토타입: 공용 함수 Authenticate($username, $password) {} ​​​​
B는 B로 시작
$Body --Attributes
From: PHPMailer: $ Body
파일: class.phpmailer .php
설명: 이메일 콘텐츠, HTML 또는 텍스트 형식
C로 시작
$CharSet -- 속성
보낸 사람: PHPMailer: $CharSet
파일: class.phpmailer .php
설명: 이메일 인코딩, 기본값은 iso-8859-1입니다.
$ConfirmReadingTo --property
보내는 사람: PHPMailer: $ConfirmReadingTo file class.phpmailer .php
설명: 영수증?
$ContentType -- 속성
보낸 사람: PHPMailer: $ContentType
파일: class.phpmailer .php
설명: 문서 유형, 기본값은 "text/plain"입니다.
$CRLF -- 속성
출처: PHPMailer: $ContentType
파일: class.phpmailer .php
설명: SMTP 응답 끝 구분 기호(SMTP 응답 줄 끝?)
class.phpmailer .php --Object
From: class.phpmailer .php
파일: class.phpmailer .php
설명: phpmailer object
class.smtp.php --Object
From: class.smtp.php 파일: class .smtp.php
설명: SMTP 함수 개체
ClearAddresses --method
From: PHPMailer::ClearAddresses()
파일: class.phpmailer .php
설명: 수신자 지우기, 준비 다음 배송.반환 유형은 void입니다.
ClearAllRecipients --Method
From: PHPMailer::ClearAllRecipients()
File: class.phpmailer.php
설명: CC(CC) 및 BCC( 숨은참조)
ClearAttachments --Method
보내는 사람: PHPMailer ::ClearAttachments()
파일: class.phpmailer .php
설명: 첨부 파일 지우기
ClearBCCs --Method
보낸 사람: PHPMailer ::ClearBCCs() 파일 class.phpmailer .php
설명: BCC 지우기(BCC)
ClearCustomHeaders --method
From: PHPMailer::ClearCustomHeaders()
파일: class.phpmailer .php
설명: 사용자 정의 헤더 지우기
ClearReplyTos --method
보내는 사람: PHPMailer::ClearReplyTos()
파일: class.phpmailer .php
설명: 답장하는 사람 지우기
닫기 --
메서드
출처: SMTP::Close()
파일: class.smtp.php
설명: SMTP 연결 닫기
Connect --Method
출처: SMTP: :Connect()
파일: class.smtp.php
설명: SMTP 연결 설정 Mailer.html
$ContentType --Attributes
보내는 사람: PHPMailer: $ContentType
파일: phpmailer .php
설명: 문서 유형, 기본값은 "text/plain"
D로 시작
$do_debug --Attributes
From: SMTP: $do_debug
파일: class.smtp
설명: SMTP 디버깅 출력
데이터 - 메서드
보낸 사람: SMTP: $Data()
파일: class.smtp.php
설명: 데이터 명령 및 메시지 정보를 서버로 보냅니다( sendthemsg_datatotheserver)
E로 시작
$Encoding --Attributes
From: PHPMailer: $Encoding
File: class.phpmailer .php
설명: 이메일의 인코딩 방법을 설정합니다. 선택 사항: " 8bit", "7bit", "binary", "base64" 및 "quoted-printable".
$ErrorInfo --Attributes
발신: PHPMailer: $ErrorInfo
파일: class.phpmailer .php
설명: 메일 SMTP의 마지막 오류 메시지를 반환합니다.
Expand -- method
From: SMTP::Expand()
File: class.smtp.php
설명: Return to the 메일링 리스트 모든 사용자. 성공하면 배열을 반환하고, 그렇지 않으면 false를 반환합니다(Expand는 이름을 가져와서_list_에 구성원인 모든 사람을 나열하도록 서버에 요청합니다. 확장은 반환되고 결과가 거짓인 경우 배열의 오류가 발생합니다.)
F로 시작:
$From --Attributes
From: PHPMailer::$From file class.phpmailer .php
설명: 보내는 사람의 이메일 주소
$FromName -- 속성
보낸 사람: PHPMailer ::$FromName
파일: class.phpmailer .php
설명: 보내는 사람 이름
H로 시작:
$Helo --property
출처: PHPMailer::$Helo
파일: class.phpmailer .php
설명: SMTPHelo를 설정합니다. 기본값은 $Hostname(SetstheSMTPHELOofthemessage(Defaultis$Hostname)입니다.)
$Host --property
시작: PHPMailer::$Host
파일: class.phpmailer .php
설명: SMTP 서버를 설정합니다. 형식은 호스트 이름[포트 번호]입니다. smtp1.example.com:25 및 smtp2.example.com은 모두 유효합니다.
$Hostname -- attribute
from: PHPMailer::$Hostname
File: class.phpmailer .php
설명: 메시지에 설정 - andReceived 헤더의 ID와 호스트 이름은 모두 $Helo에서 사용됩니다. 비어 있으면 기본값은 SERVER_NAME 또는 'localhost.localdomain"입니다.
Hello -- 메서드
from: SMTP::Hello()
파일: class.smtp.php
설명: SMTP 서버 HELO로 보내기 명령
도움말 -- 메소드
from: SMTP::Help()
파일: class.smtp.php
설명: 키워드가 있으면 해당 키워드의 도움말 정보를 가져옵니다
I 시작:
IsError --Method
From: PHPMailer::IsError()
파일: class.phpmailer.php
설명: 오류 발생 여부를 반환합니다.
IsHTML --Method
보낸 사람: PHPMailer ::IsHTML()
파일: class.phpmailer .php
설명: 문자가 HTML 형식인지 여부를 설정합니다.
IsMail -- 메서드
보낸 사람: PHPMailer ::IsMail()
파일: class.phpmailer .php
설명: PHP의 메일 기능을 사용하여 메일을 보낼지 여부를 설정합니다.
IsQmail --method
From: PHPMailer::IsQmail()
파일: class. phpmailer .php
설명: qmailMTA를 사용하여 메일을 보낼지 여부를 설정합니다.
IsSendmail--Method
보내는 사람: PHPMailer::IsSendmail()
파일: class.phpmailer.php
설명: 여부 $Sendmail 프로그램을 사용하여 메일 보내기
IsSMTP--Method
보내는 사람: PHPMailer::IsSMTP()
파일: class.phpmailer.php
설명: SMTP를 사용하여 메일을 보낼지 여부
M으로 시작:
$Mailer -- 속성
출처: PHPMailer ::$Mailer
파일: class.phpmailer .php
설명: 전송 방법, ("mail", "sendmail" , 또는 "smtp") A
Mail -- 메소드
from: SMTP::Mail()
File: class.smtp.php 설명: $from의 이메일 주소에서 처리를 시작합니다. , true 또는 false를 반환합니다.true인 경우
N:
Noop-- 메소드
보내기 시작: SMTP::Noop()
파일: class.smtp.php
설명: SMTP 서버로 보내기 P로 시작하는 NOOP 명령
:
$Password --property
출처: PHPMailer::$Password
파일: class.phpmailer.php
설명: SMTP 비밀번호 설정
$PluginDir -- 속성
보낸 사람: PHPMailer ::$PluginDir
파일: class.phpmailer .php
설명: phpmailer의 플러그인 디렉터리를 설정합니다. smtpclass가 phpmailer 디렉터리에 없는 경우에만 유효합니다.
$Port - -Attribute
출처: PHPMailer::$Port
파일: class.phpmailer .php
설명: SMTP 포트 번호 설정
$Priority --Attribute
출처: PHPMailer: :$Priority
파일: class.phpmailer .php
설명: 이메일 전달 우선순위를 설정합니다. 1=긴급, 3=보통, 5=긴급하지 않음
PHPMailer --Object
보낸 사람: PHPMailer
파일: class.phpmailer .php
설명: PHPMailer -PHPEmailtransportclass
Q로 시작
Quit --Method
From: SMTP::Quit()
File: class.smtp.php
설명: 오류가 발생하지 않으면 서버에 Quit 명령을 보냅니다. 그런 다음 양말을 닫고, 그렇지 않으면 $close_on_error가 true입니다.
Start with R
Recipient -- method
from: SMTP::Recipient()
File: class.smtp.php
설명: 사용 SMTP가 RCPT 명령을 보내는 방향으로, 매개변수는 다음과 같습니다: $to
Reset -- 메소드
from: SMTP::Reset()
File: class.smtp.php
설명: Send the 전송 처리를 취소하는 RSET 명령입니다. 성공하면 true를 반환하고, 그렇지 않으면 false를 반환합니다.
S로 시작:
$Sender --property
보낸 사람: PHPMailer::$Sender
파일: class.phpmailer .php
설명: SettheSenderemail(Return -경로)의 메시지. 비어 있지 않으면 mtpmode의 'MAILFROM' 또는 'MAILFROM'을 통해 전송됩니다.
$Sendmail --Attributes
보낸 사람: PHPMailer::$Sendmail
파일: class.phpmailer .php
설명: 설정 소프트웨어 프로그램의 디렉토리
$SMTPAuth -- 속성
보낸 사람: PHPMailer ::$SMTPAuth
파일: class.phpmailer .php
설명: SMTP에 인증이 필요한지 여부를 설정하고 사용자 이름 및 비밀번호 변수를 사용합니다.
$SMTPDebug --property
From: PHPMailer::$SMTPDebug
File: class.phpmailer.php
설명: SMTP 디버그 출력 여부를 설정하시겠습니까?
$SMTPKeepAlive --property
보내는 사람: PHPMailer::$SMTPKeepAlive
파일: class.phpmailer.php
설명: 각 전송 후에 연결을 닫지 마십시오. true인 경우 SmtpClose()
$SMTP_PORT --Attributes
From: SMTP::$SMTP_PORT
File: class.smtp.php
설명: SMTP 포트 설정
🎜>$Subject -- 속성
보낸 사람: PHPMailer ::$Subject
파일: class.phpmailer .php
설명: 편지 제목 설정
보내기 -- 방법
보낸 사람: SMTP ::Send()
파일: class.smtp.php
설명: 지정된 이메일 주소에서 이메일 전송을 시작합니다
Send -- 메소드
보낸 사람: PHPMailer ::Send()
파일 : class.phpmailer .php
설명 : 이메일을 작성하고 발송 프로그램을 개발합니다. 전송에 실패하면 false가 반환됩니다. ErrorInfo를 사용하여 SMTP::SendAndMail()
파일: class.smtp.php
에서
SendAndMail --Method
오류 메시지를 확인하세요. 설명: 지정된 이메일 주소에서 이메일 전송 시작 ​​
SendOrMail -- 메소드
보낸 사람: SMTP::SendOrMail()
파일: class.smtp.php
설명: 지정된 이메일 주소에서 이메일 시작 이메일 주소 Transfer
SetLanguage --Method
From: PHPMailer::SetLanguage()
File: class.phpmailer.php
설명: phpmailer 오류 메시지의 언어 유형을 설정하고, 해당 언어가 반환되면 반환합니다. 파일을 로드할 수 없습니다. false, 기본값은 영어입니다.
SMTP --Method
From: SMTP::SMTP()
File: class.smtp.php
설명: 데이터가 로드되도록 개체를 초기화합니다. 알려진 상태
SMTP --Object
보낸 사람: SMTP
파일: class.smtp.php
설명: SMTP 개체
SmtpClose --Method
보낸 사람: PHPMailer ::SmtpClose ()
파일: class.phpmailer .php
설명: 활성화된 SMTP가 있으면 닫습니다.
T로 시작
$Timeout -- 속성
From: PHPMailer::$Timeout
File: class.phpmailer.php
설명: SMTP 서버의 시간 초과 설정(단위: 초) ).참고: win32에서 이 속성은 유효하지 않습니다.
Turn -- 메소드
from: SMTP::Turn()
파일: class.smtp.php
설명: 현재 선택적 SMTP 매개변수입니다. phpmailer는 이를 지원하지 않지만
$Username --attribute
로 시작하는
U를 지원할 수 있습니다. 출처: PHPMailer::$Username
파일: class.phpmailer .php
설명: 설정 SMTP 사용자 이름
V로 시작
$Version --Attributes
보내는 사람: PHPMailer::$Version
파일: class.phpmailer .php
설명: Phpmailer의 버전을 반환합니다.
확인 - - 메소드
from: SMTP::Verify()
파일: class.smtp.php
설명: 서버를 통해 사용자 이름이 확인되었는지 확인
W로 시작:
$WordWrap - - 속성
From: PHPMailer::$WordWrap
파일: class.phpmailer .php
설명: 한 줄당 최대 문자 수를 설정하고, 그 수를 초과하면 자동으로 줄 바꿈합니다.

위 내용은 마음의 내용을 가사로 포함하여 PHPMailer에 대한 중국어 설명을 요약해서 소개한 것입니다. PHP 튜토리얼에 관심이 있는 친구들에게 도움이 되었으면 좋겠습니다.

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.