nodemailer 附件_如何使用Nodemailer发送带有附件的电子邮件。 Node.js

nodemailer 附件

In the previous article, "How to send emails using Nodemailer?", we discussed how to send simple emails using Nodemailer in Node.js? Here, we are going to learn further – How to send emails with attachments using Nodemailer in Node.js?

在上一篇文章“ 如何使用Nodemailer发送电子邮件? ”中,我们讨论了如何在Node.js中使用Nodemailer发送简单的电子邮件? 在这里,我们将进一步学习– 如何使用Node.js中的Nodemailer发送带有附件的电子邮件?

Here is the code to send emails with attachments using Nodemailer,

这是使用Nodemailer发送带有附件的电子邮件的代码,

// load the node mailer module
var nodemailer = require('nodemailer');    
//configure the transporter
var transporter = nodemailer.createTransport({    
service: 'gmail',
auth: {
user: '[email protected]',
pass: 'your gmail password'
}
});
//email  options
var mailOptions = {
from: '[email protected]',
to: '[email protected]',
subject: 'Sending Email using Node.js',
text: 'sending email with attchments',
// attachment.
// you can use the same format and send as many attachments as possible
attachments: [        
{   
filename: 'textfile.txt',
path: 'C:/Users/GODWILL TETAH/Downloads/textfile.txt'
}
]
};
transporter.sendMail(mailOptions, function(error, info){
if (error) {
console.log(error);
} else {
console.log('Email sent');
}
});

To add attachment from a cloud storage system online, you can use the URL,

要在线从云存储系统添加附件,您可以使用以下网址,

{   
// use URL as an attachment
filename: 'license.txt',
path: 'https://raw.github.com/nodemailer/nodemailer/master/LICENSE'
},

Note: You can use the same format and send as many attachments as possible. Make sure the closing curly bracket of each attachment is separated by a comma sign (,).

注意:您可以使用相同的格式并发送尽可能多的附件。 确保每个附件的大括号用逗号(,)分隔。

Finally, start your node app and if sending is successful, the phrase ‘email sent' will be printed out on the console or terminal.

最后,启动您的节点应用程序,如果发送成功,则将在控制台或终端上打印出短语“已发送电子邮件”。

Check you're the email's inbox.

检查您是否是电子邮件的收件箱。

Using Gmail as your transporter, you can also enable the less secure app access setting.

使用Gmail作为传输者,您还可以启用安全性较低的应用访问设置。

Nodemailer 1

Sending email requires internet connection.

发送电子邮件需要互联网连接。

Do not fear about your password security. It's a tested and secured module used by many since 2010.

不要担心您的密码安全性。 自2010年以来,它已被许多人使用并经过测试和保护。

Also, don't forget the comma sign (,) that kind of separates the text content and the attachment.

另外,请不要忘记用逗号(,)分隔文本内容和附件。

It gave me some hard time when preparing this article.

在编写本文时,这给了我一些困难。

Nodemailer 2

Thanks for coding with me! See you @ the next article. Feel free to drop a comment or question.

感谢您与我编码! 下次见。 随意发表评论或问题。

翻译自: https://www.includehelp.com/node-js/how-to-send-emails-with-attachments-using-nodemailer-node-js.aspx

nodemailer 附件

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/380386.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

荷兰国旗问题

描述 荷兰国旗有三横条块构成,自上到下的三条块颜色依次为红、白、蓝。现有若干由红、白、蓝三种颜色的条块序列,要将它们重新排列使所有相同颜色的条块在一起。本问题要求将所有红色的条块放最左边、所有白色的条块放中间、所有蓝色的条块放最右边。 …

线性表-----队列

1、基本概念 队列是只允许在一端进行插入,而在另一段进行删除的线性表队头:允许删除的一端队尾:允许插入的一端空队列:没有任何元素的空表 队列是操作受限的线性表,因此不是任何对线性表的操作都可以作为队列的操作…

爱情九十六课,位置决定爱情

恋人,就像两颗星,会按照彼此既定的轨道移动,决定爱情的,有时不是情感,而是位置。 无论你多努力,可能都无法超越你的位置。 候补行星 阿康的女朋友有很多男性朋友,他总觉得她和他们走得太近了&am…

如何在React JS组件和React JS App中添加CSS样式?

In this tutorial, we will only work with CSS styles. Please ensure you have basic knowledge of HTML, CSS, React JS and Node.Js. 在本教程中,我们将仅使用CSS样式 。 请确保您具有HTML,CSS,React JS和Node.Js的基础知识。 In our re…

如何用 Win32 APIs 枚举应用程序窗口和进程

http://www.vckbase.com/document/viewdoc/?id1482 转载于:https://www.cnblogs.com/niuniu502/archive/2007/03/20/681839.html

用计算机怎么打出狂浪字谱,狂浪歌曲简谱

狂浪歌曲简谱:66671112|2223176|一波一波接踵而来,大风带着我摇摆,22222112|322143-|66671112|梦在燃烧心在澎拜,不用徘徊。大摇大摆漂在人海,222…

C和汇编---while反汇编

环境&#xff1a;VC C程序&#xff1a; #include "stdio.h"int main() {int i1,sum0;while(i<100){sumi;i;}printf("%d\n",sum);return 0; }用while计算1到100的值&#xff0c;功能很简单&#xff0c;让我们看看反汇编 首先在main函数的入口&#xff0…

cigarettes(香烟)

描述 Tom has many cigarettes. We hypothesized that he has n cigarettes and smokes them one by one keeping all the butts. Out of k > 1 butts he can roll a new cigarette. Now&#xff0c;do you know how many cigarettes can Tom has? 汤姆有很多香烟。我们假设…

add separator in the sessionmenu

$itk_component(sessionmenu) add separator $itk_component(sessionmenu) add -label "Add images..." \       -underline 4 \       -command [code $this addImages] $itk_component(sessionmenu) add separator 转载于:https://ww…

Java Thread类的静态布尔型interrupted()方法(带示例)

线程类静态布尔型interrupted() (Thread Class static boolean interrupted()) This method is available in package java.lang.Thread.interrupted(). 软件包java.lang.Thread.interrupted()中提供了此方法。 This method is used to check the thread, whether a thread has…

IPv6技术未来发展趋势

前言 人们对于采用综合技术&#xff0c;将数据、话音和视频等业务“一网打尽”梦想的追求从来都没有停止过。从上世纪80年代的综合业务数字网(ISDN)技术&#xff0c;到90年代的基于异步传输模式(ATM)的宽带ISDN&#xff0c;直到现在的IPMPLS(多协议标记交换)技术等。在这一过程…

伪静态设置 html,Apache下伪静态html(URL Rewrite)的设置方法

一 打开 Apache 的配置文件 httpd.conf 。二 将#LoadModule rewrite_module modules/mod_rewrite前面的#去掉三 在 httpd.conf中添加&#xff1a;RewriteEngine On#RewriteCond %{ENV:SCRIPT_URL} (?:index|dispbbs)[-0-9]\.htmlRewriteRule ^(.*?(?:index|dispbbs))-([-0-9…

栈的应用

1、括号匹配 如果是扫描到左括号&#xff0c;则入栈如果是扫描到右括号&#xff0c;则检查现在的栈顶元素&#xff0c;如果括号匹配&#xff0c;则栈顶元素出栈结束时&#xff0c;如果栈内没有元素&#xff0c;则括号匹配 bool Check(char *str){stack s;InitStack(s);int le…

Silverlight 布局控件

1.1. Canvas 在Canvas 布局中&#xff0c;控件使用Canvas.Top和Canvas.Left来定位内容: View Code 1 <Canvas x:Name"LayoutRoot" Background"White">2 <Button Name"SampleButton"3 Content"Sample Bu…

谁是最好的Coder

描述 计科班有很多Coder&#xff0c;帅帅想知道自己是不是综合实力最强的coder。 帅帅喜欢帅&#xff0c;所以他选了帅气和编程水平作为评选标准。 每个同学的综合得分是帅气程度得分与编程水平得分的和。 他希望你能写一个程序帮他一下。 输入 数据有多组。 输入一个数…

如何检查数组是否包含JavaScript中的对象?

In this article, we will look at various methods to check if an array includes an object in JavaScript. Consider the following object, 在本文中&#xff0c;我们将研究各种方法来检查数组是否包含JavaScript中的对象 。 考虑以下对象&#xff0c; const squirtle {n…

或许是累了,思维开始发散

在高歌猛进了近一个月之后&#xff0c;这几天似乎找不到感觉了。之前发现的几个技术难点也一直没有解决的思路。而且我发现自己的想法总是停留在表面和高层&#xff0c;如果深入进技术细节&#xff0c;就力不从心。我愿意&#xff0c;也可以跟踪追赶上业界的技术前沿&#xff0…

HTML边框百分比,CSS:以百分比和边框表示的宽度

使用该box-sizing: border-box属性。它修改了盒子模型的行为&#xff0c;以将填充和边框视为元素总宽度的一部分(但不包括边距)。这意味着元素的设置宽度或高度包括为填充和边框设置的尺寸。在您的情况下&#xff0c;这意味着元素的宽度及其边界的宽度将占用30&#xff05;的可…

Collection 和 Map接口及其实现类总结

Collection 和 Map接口及其实现类总结 Collection接口 Collection是最基本的集合接口&#xff0c;一个Collection代表一组Object&#xff0c;即Collection的元素&#xff08;Elements&#xff09;。一些Collection允许相同的元素而另一些不行。一些能排序而另一些不行。Java SD…

C和汇编-----for循环

环境&#xff1a;VC for循环有三个表达式&#xff0c;第一个表达式是初始化&#xff0c;在for循环之前执行一次&#xff0c;后面就不执行了&#xff0c;第二个是循环条件&#xff0c;在执行循环体之前求值&#xff0c;如果为真&#xff0c;执行循环体&#xff0c;如果为假&…