Meteor email all recipients were rejected -
this meteor server code uses email 1.0.12 package send email.
meteor.startup(function() { smtp = { username: 'some@gmail.com', password: 'mypassword', incomingserver: 'pop.somecompany.com', incomingport: '110', outgoingserver: 'smtp.somecompany.com', outgoingport: '587' }; process.env.mail_url = 'smtp://' + encodeuricomponent(smtp.username) + ':' + encodeuricomponent(smtp.password) + '@' + encodeuricomponent(smtp.outgoingserver) + ':' + smtp.outgoingport; });
but terminal error shows
recipienterror: can't send mail - recipients rejected
what steps take find cause of problem in order fix it? thanks.
edit
instructions web hosting company are:
- incoming email server: pop.companyname.com
- outgoing email server: smtp.companyname.com
- username: full mailbox name.
- password: mailbox password.
- incoming mail port: port 110.
- outgoing mail port: port 25 or port 587.
- outgoing server authentication: required.
- please make sure uncheck option ssl incoming , outgoing mail servers.
Comments
Post a Comment