-1

actually, i am trying to send about 400 mails with python smtplib and rendering html in the mail, but after the 98th mail, connection was closed. I know that the time limit for sending google mails per day is 500, so why my connection is closed. actually, there are no errors in the code, it works perfectly, my connection is good and i am using windows 10.

Twfyq Bhyry
  • 150
  • 1
  • 10

1 Answers1

1

I think in your case, using smtp.google.com the limit is 100: see here.

It reads:

Email recipients per day 100* / day for Consumer (e.g., gmail.com) and G Suite free edition.

I do not see any limits for timing.

marcel h
  • 742
  • 1
  • 7
  • 20
  • yes, but i am not using it directly, i am giving a time limit between each sending about 3 seconds. but the problem may be here. anyway i will try to use paid trial. thanks for the answer – Twfyq Bhyry Sep 19 '21 at 16:38
  • I updated the link to directly refer to the list of relevant parameters, I hope that helps to clarify the question. – marcel h Sep 19 '21 at 16:45
  • yes, that helped me. thanks. – Twfyq Bhyry Sep 19 '21 at 17:02