View Full Version : Build a "send to a friend" in AS3
dahh
March 24th, 2008, 09:01 AM
Anyone know any good tutorials or maybe can help me how I can build a "send to a friend" function to a game Im doing?
Any help would be awesome!
ecptavares
March 24th, 2008, 09:40 AM
What do You want to send to a friend ? An email with the address of this game?
If that is what you want you need an external php or coldfusion file to recieve what you want to send to a friend.Inside this php or cfm file there will be a function to send an email to whatever email address the user enters .
dahh
March 24th, 2008, 09:55 AM
Yeah, I just want to send the URL and maybe some text in it. I dont need any MySQL?
ecptavares
March 24th, 2008, 11:50 AM
Hi!
Even if you are not gonna need any database usage you still need one of these types of scrpited files. Look at google for some examples of sending mail with php and flash stuffs like that. Here is a code I use to invite people over to my web site.It was done in ColdFusion
<html>
<head>
</head>
<body>
<cfmail from="#trim(email)#" to="#trim(aemail)#" subject= "#nome#,wants to invite you to visit DJ Chambinhos Official Web Site!"
server="put a smtp server"
port="25" type="html">
<font size="2" face="Trebuchet MS">
Oi #anome# ! <br>
<br>
<a href="mailto:#aemail#">#nome#</a> visitou DJ Chambinho's Official Web Site e achou que o site e muito legal.Esta pessoa decidiu te convidar a visitar este site tambem.<br><br>
Site : <a href="http://www.djchambinho.com">www.djchambinho.com</a><br><br>
DJ Chambinho's Official Web Site fala sobre o DJ Chambinho de Belo Horizonte.<br>
Voce ira conhece-lo e ficar sabendo qual estilo de musica ele toca,o que esta rolando no mundo da musica eletronica e algumas informacoes de como ele comecou a trabalhar como DJ.<BR>
Acesse agora o web site do DJ Chambinho!<BR>
<br>
Obrigado pela atencao.<br>
<b>Dj Chambinho</b><br>
<b><i><a href="http://www.djchambinho.com">www.DJChambinho.Com</a></i></b>
</font>
</cfmail>
</html></body>
Hope this helps you
Powered by vBulletin® Version 4.1.10 Copyright © 2012 vBulletin Solutions, Inc. All rights reserved.