구체적인 방법은 다음과 같습니다.
(동영상 공유 학습: 프로그래밍 입문)
1 먼저 qq 메일함 설정에서 POP3/SMTP 서비스를 활성화합니다
인증 코드를 저장합니다.
Yii2 구성 파일(common/config/main.php의 구성 요소)에 메일함 구성 요소
'mailer' => [ 'class' => 'yii\swiftmailer\Mailer', 'viewPath' => '@common/mail', // send all mails to a file by default. You have to set // 'useFileTransport' to false and configure a transport // for the mailer to send real emails. 'useFileTransport' => false, 'transport' => [ //这里如果你是qq的邮箱,可以参考qq客户端设置后再进行配置 http://service.mail.qq.com/cgi-bin/help?subtype=1&&id=28&&no=1001256 'class' => 'Swift_SmtpTransport', 'host' => 'smtp.qq.com', // qq邮箱 'username' => '114***6@qq.com', //授权码, 什么是授权码, http://service.mail.qq.com/cgi-bin/help?subtype=1&&id=28&&no=1001256 'password' => '***', 'port' => '465', 'encryption' => 'ssl', ], 'messageConfig'=>[ 'charset'=>'UTF-8', 'from'=>['114***@qq.com'=>'developer'] ], ],
를 추가하고 메일함 인터페이스를 호출하여 이메일을 보냅니다.
public function actionSendmail() { $mail = \YII::$app->mailer->compose(); $mail->setTo("***@qq.com"); $mail->setSubject("邮件测试"); $mail->setTextBody("textbody 25 ok?");//发布纯文字文本 //$mail->setHtmlBody("htmlbody");//发布可以带html标签的文本 if($mail->send()){ echo "success"; }else{ echo "failure"; } }
관련 권장 사항: yii 프레임워크
위 내용은 yii2를 사용하여 qq 사서함을 사용하여 파일을 보내는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!