我想從我的應用程序發送電子郵件,但我的主機要多餘的錢用於SMTP協議 有沒有辦法通過swiftmailer
在yii2機智POP3協議發送電子郵件?使用POP3傳輸協議yii2 swiftmailer
-1
A
回答
2
對於通過Yii2發送電子郵件,您可以按照下面的步驟。
main.php
'mailer' => [
'class' => 'yii\swiftmailer\Mailer',
'viewPath' => '@app/mail',
'useFileTransport' => false,//set this property to false to send mails to real email addresses
//comment the following array to send mail using php's mail function
'transport' => [
'class' => 'Swift_SmtpTransport',
'host' => 'smtp.gmail.com',
'username' => 'email id',
'password' => 'password',
'port' => '587',
'encryption' => 'tls',
],
],
控制器
\Yii::$app->mail->compose('your_view', ['params' => $params])
->setFrom([\Yii::$app->params['supportEmail'] => 'Test Mail'])
->setTo('[email protected]')
->setSubject('This is a test mail ')
->send();
欲瞭解更多詳細信息,請參閱 Docs
-1
相關問題
- 1. 傳輸文件的協議
- 2. 修改vfs傳輸使用我自己的傳輸協議
- 3. C#POP3協議解決方案
- 4. 使用Javascript輸出協議
- 5. 是否可以使用pop3協議發送電子郵件?
- 6. 如何使用IMAP/POP3協議在Android中獲取郵件
- 7. 如何檢索僅使用POP3協議的新電子郵件
- 8. 如何使用swiftmailer發送郵件 - Yii2
- 9. 什麼是MessagePack /協議緩衝區的傳輸協議?
- 10. 使用C++使用CAN協議傳輸數據的源代碼
- 11. 傳輸鍵擊的Socket協議規範?
- 12. 文件傳輸協議和AS400
- 13. HTTP傳輸錯誤:java.net.MalformedURLException:無協議:REPLACE_WITH_ACTUAL_URL
- 14. ICMP是傳輸層協議嗎?
- 15. 下載流式傳輸RTSP協議
- 16. 傳輸協議如何工作?
- 17. 流式傳輸視頻UDP協議
- 18. 流式傳輸和錄製協議
- 19. Youtube協議在iPhone上流式傳輸
- 20. UDP上的可靠傳輸協議
- 21. 數據傳輸協議設計
- 22. SMTP - 簡單郵件傳輸協議
- 23. 如何選擇安全傳輸協議
- 24. Android Studio Adb傳輸協議錯誤
- 25. XMPP傳輸到另一個協議
- 26. TIBCO EMS支持STOMP傳輸協議嗎?
- 27. 反向Yii2 swiftmailer \消息toString()
- 28. 覆蓋Yii2 Swiftmailer收件人
- 29. 使用哪種消息傳遞協議?
- 30. 傳遞數據TextView使用協議