2013-02-07 67 views
-1

我嘗試使用nodemailer將確認郵件發送給node.js中的GMail和Yahoo用戶。我嘗試這樣做:我無法使用node.js中的nodemailer將郵件發送給yahoo用戶

nodemailer.createTransport("SMTP", 
     { 
       service: 'gmail', 
       auth: 
       { 
         user: "[email protected]", 
         pass: "xxxx" 
       } 
     }); 
var message ={ 

         from: 'XXX.com', 
         to:[email protected], 
         subject: 'Confirm your registration', 

       } 

它工作正常使用Gmail,但我想給雅虎,所以我給了yahoo代替service:Gmail但顯示以下錯誤:

Mail from command failed - 553 From address not verified - see http://help.yahoo.com/l/us/yahoo/mail/original/manage/sendfrom-07.html

如何發郵件給雅虎?

回答

2

您不需要爲其他目的地更改service。即如果您提供gmail登錄憑據並向yahoo發送電子郵件,您的服務仍然是'gmail'。

+0

非常感謝你的工作...... – silvesterprabu

相關問題