I'm going to be using Google's free SMTP server to send a low volume of logging alerts.
I'll be using the code suggested here: Sending email through Gmail SMTP server with C#
Google sets a limit of 2,000 messages per day: Google - Email sending limits
I doubt I'll ever hit that, but just in case ...
Does anyone know what, specifically, will happen to my C# if I do exceed that?
I would be hoping for SmptClient.Send()
to throw an appropriate exception. But I'm concerned that it might complete just fine, but the email would bounce back, in some manner?
Does anyone know (or know what support system I should be contacting at Google to find out?)