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:

  1. incoming email server: pop.companyname.com
  2. outgoing email server: smtp.companyname.com
  3. username: full mailbox name.
  4. password: mailbox password.
  5. incoming mail port: port 110.
  6. outgoing mail port: port 25 or port 587.
  7. outgoing server authentication: required.
  8. please make sure uncheck option ssl incoming , outgoing mail servers.


Comments

Popular posts from this blog

wordpress - (T_ENDFOREACH) php error -

Export Excel workseet into txt file using vba - (text and numbers with formulas) -

Using django-mptt to get only the categories that have items -