Nodejsはメーラーを使ってメールを送ります.


実際のアプリケーションでは、サーバの特徴がある情報が必要な時に、適時にメッセージを送ります.準備と処理ができます.プロジェクト中のサーバーの数が多いので、管理サーバのクラスタもあまり便利ではありません.
余計なことを言わないでください.
まず、メールを送るモジュールをインストールする必要があります.
npm install mailer
次にコードにモジュールを導入します.
var email = require("mailer");
最後にモジュールを使ってメールを送ります.
email.send(
        {
            ssl: true,
            host: "smtp.exmail.qq.com",//   smtp.qq.compop.qq.com
            domain: "[xxx.xxx.xxx.xxx]",//          http://ip.qq.com/   
            to: "[email protected]",
            from: "[email protected]",
            subject: "myemail test email",
//            reply_to: "[email protected]",
            body: "Hello! This is a test of the myemail.",
            authentication: "login",
            username: "[email protected]",
            password: "xxx",
            debug: false
        },
        function (err, result) {
            if (err) {
                console.log("the err:" + err);
                response.write(JSON.stringify({
                    "    ": "    ",
                    "    ": "    "
                }));
                response.end();
            } else {
                if (result) {
                    console.log("    ");
                    response.write(JSON.stringify({
                        "    ": "    "
                    }));
                    response.end();
                } else {
                    response.write(JSON.stringify({
                        "    ": "    ",
                        "    ": "    "
                    }));
                    response.end();
                }
            }
        }
    );
Nodejsというモジュールは簡単で使いやすいです.あなたのために役に立つと思います.
コードのダウンロード:http://download.csdn.net/detail/qxs965266509/8896463
みんなを助けることができることを望んで、あなたに対して助けがあってあるいは参考にするべきだと感じて、下で個の称賛をつけることができます!ありがとうございます.転載があれば著名に来てください.http://blog.csdn.net/qxs965266509