如何使用react.js中的nodemailer附加文件
我正在使用与NodeMailer的React发送来自用户输入表格的电子邮件,用户应能够通过表单附加文件(例如PDF),并且表格的内容将使用NodeMailer作为电子邮件发送。我的问题是不知道如何将文件附加到电子邮件中。 在这里是可以使用NodeMailer使用的属性的列表和示例。我可以从通过文件输入到event.target.files
的对象中提取哪些属性,用于附加到电子邮件上,我可以获取输入文件的路径吗?
Code:
const [file, setFile] = useState(null);
const handleSubmit = async(e) => {
e.preventDefault();
try {
await axios.post("http://localhost:4000/send_form", { file });
}
catch (error) {
console.log(error);
}
}
return (
<form onSubmit={handleSubmit}>
<input
type="file"
onChange={(e) => setFile(e.target.files[0])}
required/>
<button type="submit">Send</button>
</form>
);
Server:
app.post("/send_form", cors(), async (req, res) => {
let { file } = req.body;
await transport.sendMail({
from: "[email protected]",
to: "[email protected]",
subject: "Subject",
html: `<h1>Hello</h1>`,
attachments: [{
filename: "",
path: ""
}]
})
});
I am using React with Nodemailer to send emails from a user input form, the user should be able to attach a file (a PDF for example) through the form and the content of the form will be sent as an email using Nodemailer. My issue comes with not knowing how to attach the file to the email. Here is a list and examples of properties that can be used using Nodemailer. What properties can I extract from the object inputted through the file input to the event.target.files
to use to attach to the email, can I get the path of the inputted file for example?
Code:
const [file, setFile] = useState(null);
const handleSubmit = async(e) => {
e.preventDefault();
try {
await axios.post("http://localhost:4000/send_form", { file });
}
catch (error) {
console.log(error);
}
}
return (
<form onSubmit={handleSubmit}>
<input
type="file"
onChange={(e) => setFile(e.target.files[0])}
required/>
<button type="submit">Send</button>
</form>
);
Server:
app.post("/send_form", cors(), async (req, res) => {
let { file } = req.body;
await transport.sendMail({
from: "[email protected]",
to: "[email protected]",
subject: "Subject",
html: `<h1>Hello</h1>`,
attachments: [{
filename: "",
path: ""
}]
})
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不需要 axios 上传文件,只需将其 POST 为 FormData 使用 Fetch API。
如果您还有其他数据要与图像一起提交,也可以将其附加到
FormData
对象。或者,您可以简单地捕获任何
HTMLFormElement
。只需确保将
enctype
属性设置为multipart/form-data
。然后,在服务器上,您可以使用 multer 中间件将文件缓冲区流式传输到 nodemailer 附件:
如果您有其他中间件,您需要在此使用路由,它们可以作为数组传入:
请注意,以下两个语句中使用的键必须匹配。该键对应于文件输入的
name
属性。如果需要,Multer 还允许上传多个文件。您可以使用
multiple
属性:或者您可以使用多个文件输入:
如果这样做,您将需要从
req.files
访问上传的文件数据属性而不是单数req.file
。表单数据的其余部分将在
req.body
对象中提供:You don't need axios to upload the file, just POST it as FormData with the Fetch API.
If you have other data to submit along with your image it can also be append to the
FormData
object.Or, you can simply capture all fields from any
HTMLFormElement
. Just make sure to set theenctype
attribute to bemultipart/form-data
.Then, on the server you can use the multer middleware to stream the file buffer to the nodemailer attachment:
If you have other middleware you need to use on this route, they can be passed in as an array:
Note that the key used in the following two statements must match. This key corresponds to the
name
attribute of the file input.Multer also allows for multiple file uploads if needed. You can either capture several files from a single input with the
multiple
attribute:Or you could use several file inputs:
If you do this, you will need to access the uploaded file data from the
req.files
property instead of the singularreq.file
.The rest of your form data will be available in the
req.body
object: