dtd793353 2015-08-27 10:06
浏览 103
已采纳

通过谷歌的SMTP服务器发送电子邮件的最快方式?

im developing a website which sends alot of emails (registration, forgot password, transaction, etc..) and currently i'm using PHPMailer and gmail's SMTP to send them. They work pretty good and i never had a lost email.

So what is wrong?

Well, since it has to login to the SMTP and such it takes longer to load the page. For example when a user makes a transaction it takes about 900-1000ms longer to finish the request. I balieve that sending emails like this is a very bad idea.

What to do?

I never had to send mails this way so i dont know which is the fastest practise.

I was thinking to write a little python or php cli service which has a queue with emails to send. When an email must get delivered it will take care of it.

Not sure if this is perfect. An suggestions?

  • 写回答

1条回答 默认 最新

  • doumanshan6314 2015-08-27 11:12
    关注

    I believe that sending emails like this is a very bad idea.

    You are correct.

    Any suggestions?

    Sending mails (or any process that takes a bit of time for that matter) should always be done in the background, so the frontend stays fast.

    You have different ways of doing that:

    • Insert/flag some row in the database, and have a cron job regularly check if there are such rows to be processed. This is simple enough to implement and works well if delay is not a problem. If you need to run the cron too frequently though, then move on to the next solution.
    • Using a third-party queue/messaging service like RabbitMQ. This is a bit longer to setup, but it's a very solid and versatile architecture: the frontend sends whatever tasks you want to the service, which takes care of queuing and distributing them to your workers scripts. Can be used for sending your emails, resizing images, generating PDF, etc. Whatever takes time can be moved in the background.

    Now there is another solution that works for emails in particular, if you have some system administration skills: use a SMTP relay.

    • Instead of querying Gmail SMTP directly (which is slow), your frontend delivers the mails locally (which is fast), and your local mail server (Postfix for example) will take care of forwarding them to Gmail's SMTP.
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 高德地图点聚合中Marker的位置无法实时更新
  • ¥15 DIFY API Endpoint 问题。
  • ¥20 sub地址DHCP问题
  • ¥15 delta降尺度计算的一些细节,有偿
  • ¥15 Arduino红外遥控代码有问题
  • ¥15 数值计算离散正交多项式
  • ¥30 数值计算均差系数编程
  • ¥15 redis-full-check比较 两个集群的数据出错
  • ¥15 Matlab编程问题
  • ¥15 训练的多模态特征融合模型准确度很低怎么办