Meteor's Email is undefined

纵然是瞬间 提交于 2019-12-18 07:14:49

问题


After adding Meteor's email package and restarting the server (for good measure), I do this:

Template.messaging.events({
  'click #send-message' : function () {
    Email.send({
      from: 'test@gmail.com',
      to:   'test2@gmail.com',
      html: 'heyo buddy.'
    });
  }
});

When I fire the event, the console spits out:

Uncaught ReferenceError: Email is not defined

The docs say that even unconfigured, Email.send() should output to standard output. I get the same problem when deployed to meteor.com, which should be automatically set up with Mailgun.

Any ideas?


回答1:


As mentioned in the docs, Email is a server-side only package. You are trying to invoke it client-side within a Template callback. I suggest you move your above calls into a server-side method via Meteor.methods, and then invoke it client-side via Meteor.call



来源:https://stackoverflow.com/questions/13785312/meteors-email-is-undefined

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!