2017-10-04 91 views
1

我试图使用nodemailer通过A G套房的电子邮件地址从服务器发送电子邮件

我现在有一个域名与谷歌域以及与此注册我有A G套房使Node.js服务器发送电子邮件实例设置为我提供了一个电子邮件服务器。

我有一个电子邮件设置:[email protected]

什么即时试图做的是从电子邮件从我的服务器发送电子邮件以上。我不想使用普通用户和密码验证,因为这对我来说是非常不安全的。

有没有人有一个教程或文件,他们可以链接我,这将帮助我实现这一目标?

回答

1

下面是来自官方Gmail API documentation一个Quickstart

完成本页面的其余部分中描述的步骤,并在大约 五分钟就会有一个简单的Node.js的命令行应用程序 ,使请求到Gmail的API。从快速入门

段:

var fs = require('fs'); 
var readline = require('readline'); 
var google = require('googleapis'); 
var googleAuth = require('google-auth-library'); 

// If modifying these scopes, delete your previously saved credentials 
// at ~/.credentials/gmail-nodejs-quickstart.json 
var SCOPES = ['https://www.googleapis.com/auth/gmail.readonly']; 
var TOKEN_DIR = (process.env.HOME || process.env.HOMEPATH || 
    process.env.USERPROFILE) + '/.credentials/'; 
var TOKEN_PATH = TOKEN_DIR + 'gmail-nodejs-quickstart.json'; 

// Load client secrets from a local file. 
fs.readFile('client_secret.json', function processClientSecrets(err, content) { 
    if (err) { 
    console.log('Error loading client secret file: ' + err); 
    return; 
    } 
    // Authorize a client with the loaded credentials, then call the 
    // Gmail API. 
    authorize(JSON.parse(content), listLabels); 
}); 

/** 
* Create an OAuth2 client with the given credentials, and then execute the 
* given callback function. 
* 
* @param {Object} credentials The authorization client credentials. 
* @param {function} callback The callback to call with the authorized client. 
*/ 
function authorize(credentials, callback) { 
    var clientSecret = credentials.installed.client_secret; 
    var clientId = credentials.installed.client_id; 
    var redirectUrl = credentials.installed.redirect_uris[0]; 
    var auth = new googleAuth(); 
    var oauth2Client = new auth.OAuth2(clientId, clientSecret, redirectUrl); 

    // Check if we have previously stored a token. 
    fs.readFile(TOKEN_PATH, function(err, token) { 
    if (err) { 
     getNewToken(oauth2Client, callback); 
    } else { 
     oauth2Client.credentials = JSON.parse(token); 
     callback(oauth2Client); 
    } 
    }); 
} 

/** 
* Get and store new token after prompting for user authorization, and then 
* execute the given callback with the authorized OAuth2 client. 
* 
* @param {google.auth.OAuth2} oauth2Client The OAuth2 client to get token for. 
* @param {getEventsCallback} callback The callback to call with the authorized 
*  client. 
*/ 
function getNewToken(oauth2Client, callback) { 
    var authUrl = oauth2Client.generateAuthUrl({ 
    access_type: 'offline', 
    scope: SCOPES 
    }); 
    console.log('Authorize this app by visiting this url: ', authUrl); 
    var rl = readline.createInterface({ 
    input: process.stdin, 
    output: process.stdout 
    }); 
    rl.question('Enter the code from that page here: ', function(code) { 
    rl.close(); 
    oauth2Client.getToken(code, function(err, token) { 
     if (err) { 
     console.log('Error while trying to retrieve access token', err); 
     return; 
     } 
     oauth2Client.credentials = token; 
     storeToken(token); 
     callback(oauth2Client); 
    }); 
    }); 
} 

/** 
* Store token to disk be used in later program executions. 
* 
* @param {Object} token The token to store to disk. 
*/ 
function storeToken(token) { 
    try { 
    fs.mkdirSync(TOKEN_DIR); 
    } catch (err) { 
    if (err.code != 'EEXIST') { 
     throw err; 
    } 
    } 
    fs.writeFile(TOKEN_PATH, JSON.stringify(token)); 
    console.log('Token stored to ' + TOKEN_PATH); 
} 

/** 
* Lists the labels in the user's account. 
* 
* @param {google.auth.OAuth2} auth An authorized OAuth2 client. 
*/ 
function listLabels(auth) { 
    var gmail = google.gmail('v1'); 
    gmail.users.labels.list({ 
    auth: auth, 
    userId: 'me', 
    }, function(err, response) { 
    if (err) { 
     console.log('The API returned an error: ' + err); 
     return; 
    } 
    var labels = response.labels; 
    if (labels.length == 0) { 
     console.log('No labels found.'); 
    } else { 
     console.log('Labels:'); 
     for (var i = 0; i < labels.length; i++) { 
     var label = labels[i]; 
     console.log('- %s', label.name); 
     } 
    } 
    }); 
} 

要理解这个概念和实现细节,你可以尝试Sending Email。为了给您一个概述,这里是发送电子邮件和高端工作流程的方式。

有两种方式使用Gmail的API发送电子邮件:

电子邮件作为base64url编码字符串发送到message resource的原始属性 中。高级别工作流程发送电子邮件 是:

  1. 创建一些方便的方式电子邮件内容,并对其进行编码,作为base64url字符串。
  2. 创建一个新的信息资源及其raw属性设置为您刚刚创建的base64url字符串。
  3. 呼叫messages.send,或者,如果发送草案,drafts.send发送消息。

您也可以参考本教程Nodemailer community site

这些文档适用于旧版本的Nodemailer v2和 的未维护版本。对于升级和最新Nodemailer V3 +文档, 看到nodemailer.com主页。

0

而是建立整个逻辑创建令牌,你可以简单地使用Passportjs google auth,最后用googleapis包发送电子邮件。

相关问题