The "Freeola Customer Forum" forum, which includes Retro Game Reviews, has been archived and is now read-only. You cannot post here or create a new thread or review on this forum.
can someone tell me what I need to write them in? thanks.
There are definatley free some PERL scripts out there that let you send e-mails, I used one about a year ago! You should be able to ammend it to send HTML instead, but do take a look into using the right message headers for text or HTML e-mails.
Bottom line is, if you test it, and it works, go with it!
If you want to do it, just find a CGI script that sends e-mail for you, then, write your HTML as you normally would, then copy the HTML into the part of the CGI script that formats the e-mail, you may need to break the HTML up into lines and append it to one long string variable, ie,
---------------------------
SET msgString ""
append messageString ""
append messageString ""
append messageString "
append messageString ""
----------------------------
(OK, so I use TCL, throw me a frikkin bone here!)
Or you might be able to write it as one long string, depends on your template I suppose.
More advanced scripts let you send both HTML and text based versions in the same e-mail, you just need to set the right message headers at the start of the different versions, both versions are sent to the mail client, but the client can choose which one to display, based upon whatever the users preferences are set too.
can someone tell me what I need to write them in? thanks.