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 电力市场出清matlab yalmip kkt 双层优化问题
  • ¥30 ros小车路径规划实现不了,如何解决?(操作系统-ubuntu)
  • ¥20 matlab yalmip kkt 双层优化问题
  • ¥15 如何在3D高斯飞溅的渲染的场景中获得一个可控的旋转物体
  • ¥88 实在没有想法,需要个思路
  • ¥15 MATLAB报错输入参数太多
  • ¥15 python中合并修改日期相同的CSV文件并按照修改日期的名字命名文件
  • ¥15 有赏,i卡绘世画不出
  • ¥15 如何用stata画出文献中常见的安慰剂检验图
  • ¥15 c语言链表结构体数据插入