サーバー経由の間接-サードパーティAPIの呼び出し-安全で推奨
サーバーは、適切な認証と承認の後でサードパーティAPIを呼び出すことができます。APIキーはクライアントに公開されません。
node.js - https: //www.npmjs.org/package/node-mandrill
var mandrill = require('node-mandrill')('<your API Key>');
function sendEmail ( _name, _email, _subject, _message) {
mandrill('/messages/send', {
message: {
to: [{email: _email , name: _name}],
from_email: 'noreply@yourdomain.com',
subject: _subject,
text: _message
}
}, function(error, response){
if (error) console.log( error );
else console.log(response);
});
}
// define your own email api which points to your server.
app.post( '/api/sendemail/', function(req, res){
var _name = req.body.name;
var _email = req.body.email;
var _subject = req.body.subject;
var _messsage = req.body.message;
//implement your spam protection or checks.
sendEmail ( _name, _email, _subject, _message );
});
次に、クライアントで$ .ajaxを使用して、メールAPIを呼び出します。
クライアントから直接-サードパーティAPIを呼び出す-推奨されません
JavaScriptのみを使用してメールを送信する
in short:
1. register for Mandrill to get an API key
2. load jQuery
3. use $.ajax to send an email
このような -
function sendMail() {
$.ajax({
type: 'POST',
url: 'https://mandrillapp.com/api/1.0/messages/send.json',
data: {
'key': 'YOUR API KEY HERE',
'message': {
'from_email': 'YOUR@EMAIL.HERE',
'to': [
{
'email': 'RECIPIENT@EMAIL.HERE',
'name': 'RECIPIENT NAME (OPTIONAL)',
'type': 'to'
}
],
'autotext': 'true',
'subject': 'YOUR SUBJECT HERE!',
'html': 'YOUR EMAIL CONTENT HERE! YOU CAN USE HTML!'
}
}
}).done(function(response) {
console.log(response); // if you're into that sorta thing
});
}
https://medium.com/design-startups/b53319616782
注:APIキーは誰にでも見えるため、悪意のあるユーザーがあなたのキーを使用して、割り当てを使い果たす可能性があるメールを送信する可能性があることに注意してください。