performance of bulk emailing using system net mail

前端 未结 2 1270
既然无缘
既然无缘 2021-01-27 07:34

I have been asked to look into a bulk emailer for an intranet system and wanted some advice.

Currently we use System.Net.Mail and send the emails synchronously via the c

2条回答
  •  无人及你
    2021-01-27 08:15

    Sending to a distribution list will be faster for the sender (you only send 1 email). However, the EMail server still has to send an email to all the users on that list, so it only saves 50% of the time.

    However, large email lists do have drawbacks.

提交回复
热议问题