PHPMailer 중국어 사용 설명서, 도움이 필요한 친구가 가져갈 수 있습니다.
A로 시작: $AltBody --속성 보낸 사람: PHPMailer: $AltBody 파일: class.phpmailer.php 참고: 이 속성의 설정은 이메일 본문에서 HTML을 지원하지 않는 대체 표시입니다 AddAddress --방법 보낸 사람: PHPMailer::AddAddress(), 파일: class.phpmailer .php 설명: 수신자를 추가합니다. 매개변수 1은 수신자의 이메일 주소이고, 매개변수 2는 수신자의 직함입니다. 예를 들어 AddAddress("to@163.com","to name")이지만 매개 변수 2는 선택 사항이며 AddAddress(to@163.com)도 가능합니다. 함수 프로토타입: 공용 함수 AddAddress($address, $name = '') {} AddAttachment --방법 보낸 사람: PHPMailer::AddAttachment() 파일: class.phpmailer.php. 설명: 첨부 파일을 추가합니다. 매개변수: 경로, 이름, 인코딩, 유형. 그 중 경로는 필수이고 나머지는 선택사항입니다. 기능 프로토타입: AddAttachment($path, $name = '', $encoding = 'base64', $type = 'application/octet-stream'){} AddBCC --방법 보낸 사람: 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 --방법 보낸 사람: PHPMailer::AddCustomHeader() 파일: class.phpmailer.php 설명: 사용자 정의 이메일 헤더를 추가합니다. 매개변수는 헤더 정보입니다. 함수 프로토타입: 공개 함수 AddCustomHeader($custom_header){} AddEmbeddedImage - 메소드 보낸 사람: 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 "); HTML에서 인용하기AddReplyTo --메서드 보낸 사람: PHPMailer::AddReplyTo() 파일: class.phpmailer.php 설명: "답장"과 같은 회신 라벨을 추가합니다. 매개변수 1 주소, 매개변수 2 이름 함수 프로토타입: 공용 함수 AddReplyTo($address, $name = '') {} AddStringAttachment - 메소드 보낸 사람: PHPMailer::AddStringAttachment() 파일: class.phpmailer.php 설명: 문자열 또는 바이너리 첨부 파일(비파일 시스템)을 목록에 추가합니다.? 매개변수: 문자열, 파일 이름 [, 인코딩, 유형] 함수 프로토타입: 공용 함수 AddStringAttachment($string, $filename, $encoding = 'base64', $type = 'application/octet-stream') {} 인증 --방법 보낸 사람: SMTP::인증() 파일: class.smtp.php 참고: SMTP 인증을 시작하려면 Hello() 이후에 호출해야 합니다. 인증에 성공하면 true가 반환됩니다. 매개변수 1 사용자 이름, 매개변수 2 비밀번호 함수 프로토타입: 공용 함수 Authenticate($username, $password) {} B는 B로 시작합니다 $Body --속성 보낸 사람: PHPMailer: $Body 파일: class.phpmailer.php 설명: 이메일 콘텐츠, HTML 또는 텍스트 형식 C로 시작 $CharSet --속성 보낸 사람: PHPMailer: $CharSet 파일: class.phpmailer.php 설명: 이메일 인코딩, 기본값은 iso-8859-1 $ConfirmReadingTo --property 보낸 사람: PHPMailer: $ConfirmReadingTo 파일 class.phpmailer .php 설명: 반품 영수증이요? $ContentType --속성 보낸 사람: PHPMailer: $ContentType 파일: class.phpmailer.php 설명: 문서 유형, 기본값은 "text/plain"입니다 $CRLF --속성 보낸 사람: PHPMailer: $ContentType 파일: class.phpmailer.php 설명: SMTP 회신 끝의 구분 기호(SMTP 회신 줄 끝?) class.phpmailer .php --객체 보낸 사람: class.phpmailer.php 파일: class.phpmailer.php 설명: phpmailer 개체 class.smtp.php --객체 보낸 사람: class.smtp.php 파일: class.smtp.php 설명: SMTP 기능의 개체 ClearAddresses --방법 보낸 사람: PHPMailer::ClearAddresses() 파일: class.phpmailer.php 설명: 수신자를 삭제하고 다음 전송을 준비합니다. 반환 유형이 void입니다 ClearAllRecipients --방법 보낸 사람: PHPMailer::ClearAllRecipients() 파일: class.phpmailer.php 설명: 참조(cc) 및 숨은참조(bcc)를 포함한 모든 수신자를 지웁니다. ClearAttachments --방법 보낸 사람: PHPMailer::ClearAttachments() 파일: class.phpmailer.php 지침: 첨부파일 지우기 ClearBCC --방법 보낸 사람: PHPMailer::ClearBCCs() 파일 class.phpmailer .php 설명: 숨은참조(Bcc) 지우기 ClearCustomHeaders --방법 보낸 사람: PHPMailer::ClearCustomHeaders() 파일: class.phpmailer.php 설명: 사용자 정의 헤더 지우기 ClearReplyTos --방법 보낸 사람: PHPMailer::ClearReplyTos() 파일: class.phpmailer.php 지침: 상대방에게 명확하게 답장하세요 닫기 --방법 보낸 사람: SMTP::닫기() 파일: class.smtp.php 설명: SMTP 연결 닫기 연결 --방법 보낸 사람: SMTP::Connect() 파일: class.smtp.php 설명: SMTP 연결 설정 Mailer.html $ContentType --속성 보낸 사람: PHPMailer: $ContentType 파일: class.phpmailer.php 설명: 문서 유형, 기본값은 "text/plain"입니다 D로 시작 $do_debug --속성 보낸 사람: SMTP: $do_debug 파일: class.smtp.php 설명: SMTP 디버그 출력 데이터 -방법 보낸 사람: SMTP: $Data() 파일: class.smtp.php 설명: 데이터 명령 및 메시지 정보를 서버로 보냅니다(sendsthemsg_datatotheserver) E로 시작 $Encoding --속성 보낸 사람: PHPMailer: $Encoding 파일: class.phpmailer.php 설명: 이메일의 인코딩 방법을 설정합니다. 선택 사항: "8bit", "7bit", "binary", "base64" 및 "quoted-printable" 1 2 3 다음 페이지 마지막 페이지 |