A preserved archive of the Logical Gamers community forums, 2009-2025. The original threads and posts, served read-only. Registration, posting and private messages are gone for good.

[HELP?] Creating a Mailing List with PHP

1.2k views · started by 323 ·
#1
[HELP?] Creating a Mailing List with PHP
It would be similar to how you make a phisher. It would take the email and save it into a text document after they click submit, but it wouldn't be used for malicious reasons. I would just copy the text document's contents onto my email sending list and use that to send large emails. I was wondering how to do this because I didn't feel like signing up for one of those mailing list services =/ And I figured "Hey, why not try out some PHP?"

So, can anyone help? xD

Thanks,

~Flareboy323
#2
I suggest you use a database to store emails instead of a text file, or at least make the text file inaccessible to other users. Look up MySQL and PHP tutorials. W3school might be a good place to start.
#3
Or you could use a 3rd party system like Mailchimp. An amazing system that allows you to manage lists, send out campaigns and gives you a range of reports/statistics upon each delivery. They have a great API that allows you to store emails easily.
#4
Artificial wrote:
Or you could use a 3rd party system like Mailchimp. An amazing system that allows you to manage lists, send out campaigns and gives you a range of reports/statistics upon each delivery. They have a great API that allows you to store emails easily.


Ooh that actually sounds pretty good :O

Riddle wrote:
I suggest you use a database to store emails instead of a text file, or at least make the text file inaccessible to other users. Look up MySQL and PHP tutorials. W3school might be a good place to start.


Yeah, I haven't been able to find any tutorials on that >.< I kind of suck at that kind of thing
#5
The w3school tutorials walk you through all the basics of PHP. That should be enough to build your own basic mailing list script.
#6
Riddle wrote:
The w3school tutorials walk you through all the basics of PHP. That should be enough to build your own basic mailing list script.


Ooh cool :D I think I'll go check that out. Do you have a direct link?
#7
PHP Tutorial