我正在尝试使用以下代码将与nodemailer(non-gmail smtp)的React联系人链接:
const http = require('http');
const nodemailer = require('nodemailer');
const express = require('express');
const app = express();
app.use(express.json());
app.use(express.urlencoded({ extended: false }));
但首先是一个错误,提示:
应用不是功能
现在抛出:
TypeError:无法读取未定义的属性“ prototype” var res = Object.create(http.ServerResponse.prototype);
但这是我根本没有碰过的东西。
我也使用了gulp,并认为这可能是webpack的问题,需要一些模块,所以我尝试添加
modules.export{
target: 'node'
}
到webpack.config.js,但是它要么不起作用,要么我把它放错了方向,但是这会使评估nodemailer停止发送到我的联系表中。