- Meteor 教程
- Meteor - 主页
- Meteor - 概览
- Meteor - 环境设置
- Meteor - 第一个应用程序
- Meteor - 模板
- Meteor - 集合
- Meteor - 表单
- Meteor - 事件
- Meteor - 会话
- Meteor - 跟踪器
- Meteor - 包
- Meteor - 核心 API
- Meteor - 检查
- Meteor - Blaze
- Meteor - 定时器
- Meteor - EJSON
- Meteor - HTTP
- Meteor - 电子邮件
- Meteor - 资产
- Meteor - 安全
- Meteor - 排序
- Meteor - 帐户
- Meteor - 方法
- Meteor - Package.js
- Meteor - 发布和订阅
- Meteor - 结构
- Meteor - 部署
- Meteor - 在移动设备上运行
- Meteor - 待办事项应用程序
- Meteor - 最佳实践
- Meteor 实用资源
- Meteor - 快速指南
- Meteor - 实用资源
- Meteor - 讨论
Meteor - 电子邮件
当你需要从 Meteor 应用程序发送电子邮件时,请使用此软件包。
步骤 1 - 添加包
打开命令提示符窗口并运行以下命令 −
C:\Users\username\Desktop\meteorApp>meteor add email
步骤 2 - Mailgun 帐户
我们需要在此处创建帐户 https://mailgun.com/signup。这是 Meteor 应用程序的默认电子邮件提供商。
登录后,打开域名选项卡,然后单击沙箱网址,该网址位于域名下方。它将打开一个新页面,我们可以在其中找到默认 SMTP 登录名和默认密码。我们将在创建MAIL_URL环境变量时用到这两个信息。
发送电子邮件
要创建有效的MAIL_URL,只需将你的 Mailgun 凭据插入YOUR_DEFAULT_SMTP_LOGIN和YOUR_DEFAULT_PASSWORD即可。
if (Meteor.isServer) { Meteor.startup( function() { process.env.MAIL_URL = "smtp://YOUR_DEFAULT_SMTP_LOGIN:[email protected]:587"; Email.send({ to: "[email protected]", from: "[email protected]", subject: "Meteor Email", text: "The email content..." }); }); }
运行应用程序时,电子邮件将被发送到你指定的地址。
广告