使用 PHP 从 1and1 发送到 2k 个不同的电子邮件

发布于 2024-11-19 13:11:11 字数 529 浏览 1 评论 0原文

我已经研究这个主题很长时间了,说实话,如果你们有时间回答我的问题,我需要一些帮助;)

我的数据库中有几 k 封电子邮件(大约 2k 和即将推出...)我想每周发送两份时事通讯...实现这一目标的最佳方法是什么?

到目前为止,这就是我正在做的事情: - 一个 php 脚本(元标记刷新设置为 600),每 10 分钟向 50 人发送一封电子邮件(使用基本的 mail() 函数)。它运行 6 个小时才能收到 2000 封电子邮件。我使用的是较便宜的共享服务器 1and1(每月 2 欧元:D)。

1-这种方式是一个好方法吗?我听说当你将人们放入密件抄送时,你会直接进入垃圾邮件...而且很多人甚至没有收到电子邮件...不知道为什么。到目前为止还没有真正定论。

2-您认为值得使用专用服务器并向每个人发送 1 封电子邮件(即 2000 封不同的电子邮件)吗?或者这是一个糟糕的举动?

3- 人们在发送时事通讯时如何进行?我确信我收到 2k 封电子邮件看起来很可笑,尽管我在解决这个问题上遇到了困难;)

欢迎任何帮助。

干杯。 克/

I have been working on this subject for a long time now and to be honest I am in need of some help if you guys have some time to answer to my problem ;)

I have a few k of emails in my database (around 2k and coming up...) and I would like to send two newsletters a week ... what would be the best way to achieve that ?

So far here is what I am doing :
- a script php (with meta tag refresh set to 600) which sends every 10 minutes an email to 50 people (using basic mail() function). It runs for 6 hours to get to the 2k emails. I am using the less expensive shared server at 1and1 (2EUR a month :D).

1- Is this way to proceed a good way ? I heard when you put people in BCC you go to SPAM directly ... Also many people do not even receive the emails ... no idea why. So far it is not really conclusive.

2- Do you think it would worth taking the dedicated server and send 1 email to each people thats to say 2k different emails ? Or is it a bad move ?

3- How do people proceed when sending newsletters ? I'm sure I look ridiculous with 2k emails and though I have difficulties in making my way through this ;)

Any help welcome.

Cheers.
G/

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

空城之時有危險 2024-11-26 13:11:12
  1. 最大化与同一邮件服务器的连接之间的时间
  2. 最大化您使用的服务器数量
  3. 一次发送给一个人,
  4. 包括图像、文本和 html 版本,取消订阅链接
  5. 检查邮件服务器的响应(例如带有取消阻止链接的 IP 阻止通知)

是的,使用计划任务

  1. maximize time between connections to same mail servers
  2. maximize number of servers you use
  3. send to one person at a time
  4. include images, text and html version, unsubscribe link
  5. Check what mail servers respond (like IP blocking notice with link to unblock)

And yes, use cron

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文