# myEmail **Repository Path**: xingli/myEmail ## Basic Information - **Project Name**: myEmail - **Description**: 这是用node写的一个自己的邮件服务! - **Primary Language**: JavaScript - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2017-12-26 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # myEmail 这是用node写的一个自己的邮件服务! ### 操作 ``` git clone cd myEmail npm install node bin/www ``` ### 请求格式 ``` $.ajax({ type:"post", url:`http://119.23.219.123:8020/email`, dataType:"json", async:false, data:{ to: "['986294216@qq.com']", title: '你好', content: '
好的。。。。。。。
' }, success: function (data) { if (data.status==1) { console.log(data.result) }else{ console.log(data.msg) } }, error: function(){ alert("请求出错"); } }); ``` ### 服务器地址 ``` /node/myEmail ```