ID:1264494
 
(See the best response by Gokussj99.)
Problem description:

So there are two resources I found on byond, both called "E-Contact" which is effectively used to send e-mails for your game. Unfortunately, I guess the servers for both of them shut down or something because I can get neither to work.

So i'm looking into setting one up myself. I would like to be able to use a proc to send e-mails, preferably something that can be done automatically and doesn't require the useage of an HTML Submit button or anything bizarre like that. What would be the best place to start on something like this?
Best response
I use a PHP script with params with world.export..works good.

world.Export("http://xxx.com/activate.php?account=[name]&email=[email]&password=[md5(password)]")


I use PHPMailer and some other stuff you could do a lot of diff stuff with this..I'm sure there are other ways though.
(Windows Only)
http://glob.com.au/sendmail/
http://www.virtualobjectives.com.au/utilitiesprogs/ sendsmtp.htm
Using shell() to parse commands.

You could try SendPage() if they allow emails from BYOND.

The above method also works, but needs an external source..