I'm looking for a way to access an IMAP mail account like Gmail and using Meteor. I found node-imap but since it's an NPM module I've had a hard time getting NPM modules to work in Meteor.
Is there a good way to access an IMAP account using Meteor?
|
That's a fun one. I had exactly that as an example, see my repository for it on GitHub In short: Follow this Coderwall tip to install the node-imap module. Then in your meteor code:
and put the actual code in the
call on the server side. |
|||
|
|
var require = meteor_bootstrap.requireto expose therequirefunction (server side only) – Akshat Feb 12 at 2:54