bulk-mail-cli icon indicating copy to clipboard operation
bulk-mail-cli copied to clipboard

Non-Compatible with SSE from Amazon (AWS) Error below

Open inglesuniversal opened this issue 5 years ago • 5 comments

{ "credentials": { "email": "[email protected]", "host": "email-smtp.us-west-1.amazonaws.com", // depends on what service you are using "username":"A*****************************", "password":"XXXXXXXXXXXXXXXXXXXXXXXXX", "port": 587, // 465 / 587 "secureConnection": true // boolean: true | false }, "mail": { "subject": "Good morning {{fname}} {{lname}}! Just wanted to say hi!", "from": "INGLES UNIVERSAL [email protected]", // keep the format "to": "leads.csv", // path to csv (relative to where this file is) "theme": "themes/Newsletter/theme.html", // path to csv (relative to where this file is) "attachments": [ // relative path to the attachment files. Keep this array empty if no attachments. // SEE THE EXAMPLES BELOW. { "filename": "{{fname}}'s Demo CSV.csv", // You may use string patterns in fileName "path": "leads.csv" // You may use string patterns in path too! }, { "filename": "{{fname}} {{lname}}'s Resume.pdf", "path": "https://raw.githubusercontent.com/KumarAbhirup/resume/master/Kumar%20Abhirup%20CV.pdf" } ] }, "configuration": { "mailInterval": "*/10 * * * * *", // Cron Expression: To mail every 10 seconds [ >= 10 seconds recommended ] "verbose": true // boolean: True if you want a log of the live process in the terminal. } }

ERROR SHOWN: Attempts to connect your email account has failed.

inglesuniversal avatar Nov 22 '20 11:11 inglesuniversal

I am hitting the send problem independently from Amazon AWS. Desperately looking for instructions to connect to an SMTP server not requiring authentication (it is not accessible from the internet, and only accessed through an SSH tunnel). Thunderbird allows to supply a simple user name without needing to supply a password.

nkosi23 avatar Jun 01 '21 13:06 nkosi23

For your information... I ended up going through an external company to solve my basic Email needs.

https://www.noip.com/

inglesuniversal avatar Jun 01 '21 16:06 inglesuniversal

i'm also using AWS SES and having trouble connecting to the smtp host... what could i be doing wrong

echan00 avatar Apr 05 '23 21:04 echan00

Nevermind i got it! I was using the wrong port

echan00 avatar Apr 05 '23 21:04 echan00

@echan00 port 465 && 587 are the two most common

mycloudvip avatar Apr 06 '23 05:04 mycloudvip