Use python to send google mail automatically.

fizzapong

Newbie
Joined
Aug 31, 2021
Messages
45
Reaction score
41
Hi Guys, I have written a small program in python to automatically send emails based on a list of email addresses. I want to know if this will affect my email success rate? I send 30 emails per day.
Snipaste_2023-01-05_11-22-20.png
Snipaste_2023-01-05_11-23-04.png
 
If you are using unpatched selenium webdriver and web client then most likely it will decrease your success rate.

Use patched webdriver and headful browser. https://github.com/ultrafunkamsterdam/undetected-chromedriver

Other than that, gmail web client has always better success rate than smtp so it should be alright.

I would add some pauses between sending tho and would warm up sending gmail account before start using it.
 
Clean your list, use spintax to make your subject and content looks unique, and add a delay between emails like @luky.sparks mentioned.
 
如果您使用未打补丁的 selenium webdriver 和 web 客户端,那么它很可能会降低您的成功率。

使用修补过的 webdriver 和 headful 浏览器。https://github.com/ultrafunkamsterdam/undetected-chromedriver

除此之外,gmail 网络客户端的成功率总是比 smtp 高,所以应该没问题。

我会在发送之间添加一些暂停,并在开始使用之前预热发送 gmail 帐户。
I have set up random time intervals to send emails.
 
Back
Top