我試圖發送使用SwiftMailer和Symfony2的電子郵件中的電子郵件。無法發送使用SwiftMailer和Symfony的2
之前,我有一個Can't connect to smtp.gmail.com
問題,但要知道,我沒有任何錯誤,但仍不能發送的消息。
這裏是我的config.yml:
swiftmailer:
transport: mail
encryption: ssl
host: smtp.gmail.com
port: 465
auth_mode: login
username: [email protected]
password: myPassword
config_test.yml:
swiftmailer:
disable_delivery: false
控制器發送:
$message = \Swift_Message::newInstance(null)
->setSubject('Test')
->setFrom('[email protected]')
->setTo('[email protected]')
->setBody('Test test test !!');
$this->get('mailer')->send($message);
我試過很多補丁我互聯網上找到,但沒有固定它:/
我試圖使用WAMP,局部
編輯發送它:
我已經設置了交通SMTP,現在,當我使用443端口,我得到了一個超時,如果我使用465,我只是得到「無法連接」了。
編輯2:
我試圖用 「交通運輸:Gmail的」,但仍 「無法連接」 的消息 這裏是我的配置:
transport: gmail
username: '[email protected]'
password: 'myPassword'
是不是443端口? –
我試過443,465,25,沒有什麼變化 – carndacier
我也檢查了我的垃圾郵件 – carndacier