php script are generated by Composer; they are not part of PHPMailer. If you want to use the Gmail XOAUTH2 authentication class, you will also need to add a ... ... <看更多>
「phpmailer教學」的推薦目錄:
- 關於phpmailer教學 在 Re: [請益] 利用phpmailer 發Gmail - 看板PHP - 批踢踢實業坊 的評價
- 關於phpmailer教學 在 PHPMailer/PHPMailer: The classic email sending library for PHP 的評價
- 關於phpmailer教學 在 WordPress Taiwan 正體中文: 大家好 的評價
- 關於phpmailer教學 在 [PHP] 使用PHPMailer線上發信通過驗證的SMTP - Max的程式 ... 的評價
- 關於phpmailer教學 在 [請益] phpmailer 寄信的副本和密件副本- 看板PHP - PTT數位 ... 的評價
- 關於phpmailer教學 在 PHPMailer 6.2 stream_socket_client - Stack Overflow 的評價
phpmailer教學 在 WordPress Taiwan 正體中文: 大家好 的推薦與評價
查詢了各種教學文,看到大家說也許是因為使用的是gmail,因此建議安裝『WP Mail SMTP... ... failed. https://github.com/PHPMailer/PHPMailer/wiki/Troubleshooting. ... <看更多>
phpmailer教學 在 [PHP] 使用PHPMailer線上發信通過驗證的SMTP - Max的程式 ... 的推薦與評價
如果沒有composer 指令,在RedHat/CentOS 是用yum install composer 就可以有這個指令。 附註:執行composer 指令,必需是一般使用者,不能是root. 一般 ... ... <看更多>
phpmailer教學 在 [請益] phpmailer 寄信的副本和密件副本- 看板PHP - PTT數位 ... 的推薦與評價
我使用phpmailer已經能夠正常寄信, 但是一旦設定副本或密件副本時就一直寄不出去我的寫法如下: ... [教學]Plugin的開發筆記,AdminDashboard + DB. ... <看更多>
phpmailer教學 在 Re: [請益] 利用phpmailer 發Gmail - 看板PHP - 批踢踢實業坊 的推薦與評價
※ 引述《vrscdx (史密提威威傑格曼傑森)》之銘言:
: 各位好,我知道這方面的相關教學在網路上跟版上都有。
: 可是不知為何這之間利用下班和放假時間,陸陸續續試了快一個月仍無法成功寄出。
: 這郵件功能主要是需要用在 mantisBT 上面,但由於程式和php方面不太熟
: 所以想和各位高手請益並附上網路收集的資料和自己的設定方式,
: 希望也能幫助日後有遇到相同問題的版友參考。
: 使用軟體:
: - AppServ 2.5.10
: - Instant Mantis 1.1.1 (apache2, mysql-4.1.16-win32, php-4.4.2-win32)
: (由於必須使用這個軟體,若升級php會造成一些程式錯誤)
全新安裝為什麼不用MantisBT 1.2.14,php5.x,mysql5.x,phpmailer5.x?
你用的mysql和php都是古董級了...
安全性的問題一堆...
若是有現有資料轉置問題
反而你的方向是不是去Mantis官網找有沒有無痛升級的script?
(基本上還是會痛,長痛不如短痛)
: 一、想先確定 Gmail 現在 SMTP 是否仍可透過 phpmailer 使用??
: Google 相關設定頁面:
: https://support.google.com/mail/bin/answer.py?hl=zh-Hant&answer=13287
: 二、PHP 設定
: A. 複製 ssleay32.dll 和 libeay32.dll 到 C:\Windows\System32\ (for SSL)
: B. php.ini 中啟用 extension=php_openssl.dll (去掉前面分號)
: C. php.ini 中 [mail function] 加入:
: smtp = smtp.gmail.com
: smtp_port = 465
: sendmail_from = [email protected]
: D. config_inc.php 不確定要不要也加入 Mail settings,感覺沒有差別
若要設定phpMailer,不需要去動php.ini
幫你谷哥一下...
https://www.dreamweaver.com.tw/?viewtopic=29692
php4的版本你可能得處理ssl連線的問題..
: 三、PHPMailer 2.0.4
: A. 複製 class.phpmailer.php, class.smtp.php, contents.html 和 language
: 資料夾到 C:\AppServ\www\root\mantis\
: B. 建立一個測試網頁 ex: test_gmail.php (PHPMailer 中的 example 有)
: << 在這邊想問個問題,是不是透過這個測試網頁就可以將所有設定變數
: 都代入 class.phpmailer.php 和 class.smtp.php 裡??
: (雖然我也是試過全部設固定值了) >>
: 我遇到過很多種錯誤訊息... 因為我會嘗試用不同的測試網頁
: 目前使用 test_gmail.php 這個跑完測試網頁會出現下面問題
: 如果加註解 bypass 後會跑很久之後出現整個空白的網頁。
: Fatal error: Call to undefined method PHPMailer::getFile()
: in C:\AppServ\www\root\mantis\test_gmail.php on line 10
: Line 10 內容: $body = $mail->getFile('contents.html');
$body先隨便丟個字串去測單元.
$body = "your test string";
如真要取檔案,我從官網的sample也沒看到有這個getFile的sample.
直接用
$body = file_get_contents("contents.html");
: contents.html 這個檔案我在步驟 A 有丟到同一個資料夾底下
: 可是那個 getFile() 是要去哪 define??
: 不會上傳檔案,我該整個貼上來嗎... Qrz
: 有請各位大大不吝指導,感謝!!
: p.s: 第一次在 php 版發文,若有什麼不妥或敘述不夠詳盡之處
: 煩請告知,謝謝!
建議你在進行不同lib整合時
先確認單元可以運作,再進行整合.
ex:
1.測mantisBT正常
2.測phpmailer正常
3.整合mantisBT及phpmailer後進行測試
--
※ 發信站: 批踢踢實業坊(ptt.cc)
◆ From: 219.85.82.195
※ 編輯: mirae 來自: 219.85.82.195 (02/24 06:20)
... <看更多>