NEED HELP! Python Mass Emailer, SPAM SPAM SPAM

here2host

Newbie
Joined
Mar 16, 2021
Messages
22
Reaction score
8
Hello BHW community,

i've made a python script that uses SOCK4 proxies to connect to a SMTP session, and sends email but the issue here arises :

Whenever i send emails through WebMail account it directlt gets delivered to Inbox (Content is Same)

And when i send it using my Py Script it directly lands in the SPAM folder!!!

What could be the possible error?

Thanks in Advance
 
Hard to say without seeing your setup. My first thought is you might not have proper email headers.

Look at the headers that went to inbox vs the one that went to spam. That should point you in the right direction.
 
Hard to say without seeing your setup. My first thought is you might not have proper email headers.

Look at the headers that went to inbox vs the one that went to spam. That should point you in the right direction.
tried modifying headers , still the same problem :(
 
As Deleted member 15724 mentioned, try taking the source of a delivered email and compare it to email that went to spam. Should find the differences there. Also, take note of the path email went, what servers logged. Everything in the source of that email.
 
What's the spam score? Did you check header?
Would need to see to diagnose better.
 
Like other guys, I say its probably about headers, try to send with same headers of webmail content. Also if your script uses tracking, it's harder to get inbox.
 
I think the problem is in the script Can you display it?
 
here2host
Newbie

Joined
Mar 16, 2021

Last seen
Nov 8, 2023
 
If you are sending HTML-formatted emails, ensure that your HTML markup is correct, properly nested, and follows best practices. Poorly formatted HTML can trigger spam filters.
 
Hello BHW community,

i've made a python script that uses SOCK4 proxies to connect to a SMTP session, and sends email but the issue here arises :

Whenever i send emails through WebMail account it directlt gets delivered to Inbox (Content is Same)

And when i send it using my Py Script it directly lands in the SPAM folder!!!

What could be the possible error?

Thanks in Advance
It is impossible to send an e-mail using this method. You need a lot of things like SPF records etc.
 
Back
Top