使用 PHPList 实施特定于地理区域的电子邮件通讯的最佳方法是什么?
我正在查看 PHPList,想知道如何使用它向我的用户发送特定于地理位置的新闻通讯?
这些只是测试,但我有一个包含 100 万个地理标记位置的数据库。我还有一百万个测试用户,每个用户都有不同的地址!这个想法是根据邮政编码将用户分组,然后计算所有带有地理标记的条目,例如该邮政编码的 100 英里 - 然后以某种方式配置 PHPList 以向每个邮政编码组发送唯一的新闻通讯。
我担心规模问题,而且我从未遇到过这样的挑战 - 那么有人知道如何最好地做到这一点吗?也许有比 PHPList 更好的东西?
I'm looking at PHPList and wondering how I can use it to send geo-specific newsletters to my users?
These are just tests, but I have a database with 1 million geo-tagged locations. I also have 1-million test users, each with different addresses! The idea is to combine users into groups based on their zip-code, and then calculate all geo-tagged entries with, say, 100 miles of that zip code - then somehow configure PHPList to send a unique newsletter to each zip-code group.
I'm worried about scale and I've never approached a challenge like this - so does anyone have any wisdom about how best to do this? Perhaps something better than PHPList?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为了结束这个问题,最后最好的方法是跳过使用 PHPList 并编写一个自定义控制器。
工作量很大,但是使用 PHPList 来实现这一点太尴尬了,而且工作量也很大,所以最好编写自定义代码 + 控制器。
Just to close out this question, the best way to do this, in the end, was to skip using PHPList and write a custom controller instead.
It was a lot of work, but using PHPList for this was too awkward and also a lot of work, so it's better to write a custom code + controllers.