Ver Mensaje Individual
  #2 (permalink)  
Antiguo 18/03/2012, 02:50
Avatar de trebor_200
trebor_200
 
Fecha de Ingreso: marzo-2012
Mensajes: 10
Antigüedad: 12 años, 8 meses
Puntos: 2
registro de usuarios y activacion por email casi completa

usuariomailkey.php
Código PHP:
<?php session_start(); ?>
<?php

include('conec.php');
include(
'login.php');


$user $_GET['user'];


if(
$_GET['code'] == 'zxcvbnm'){
$weaA mssql_query("SELECT Email,CAST(ActivationKey AS varchar(300)) FROM Account where UserID='$user'");
$rowA mssql_fetch_row($weaA);
echo 
$rowA['0'].'///'.$rowA['1'];
}


?>
mailconfirmacion.php
Código PHP:
<?php session_start(); ?>
<?php

// Función

function enviarmail($mail,$micodigo) {

/////////////////////////////////////////////////////////////////////////////////////////////////////////



                
                
$cuerpo 
                
'
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
                <style type="text/css">
                <!--
                body {
    background-image: url();
    margin-left: 0px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
                }
                .Estilo2 {
                    font-family: Arial, Helvetica, sans-serif;
                    font-size: 35px;
                }
                .Estilo3 {font-family: Arial, Helvetica, sans-serif}
                a:link {
                    color: #000000;
                    text-decoration: none;
                }
                a:visited {
                    text-decoration: none;
                    color: #666666;
                }
                a:hover {
                    text-decoration: underline;
                    color: #666666;
                }
                a:active {
                    text-decoration: none;
                }
.Estilo4 {font-family: Arial, Helvetica, sans-serif; color: #333333; }
                -->
                </style>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /></head>
                
<body>
<table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0" background="http://respuestas.kimmego.com/Img/plum-thatch.gif">
  <tr>
    <td><table width="500" height="282" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF">
      <tr>
        <td height="65"><div align="center"><span class="Estilo2">Titulo</span></div></td>
      </tr>
      <tr>
        <td height="217"><table width="490" border="0" align="center" cellpadding="0" cellspacing="10">
              <tr>
                <td width="170" height="19" class="Estilo3"><div align="center"><strong>Su código es:</strong></div></td>
                <td width="290"><div align="center" class="Estilo4">'
.$micodigo.'</div></td>
              </tr>
          </table></td></tr>
      
    </table></td>
  </tr>
</table>
</body>
</html>

                
                '
;
                
                
                
            
            
            
                                
$who "Titulo";
                                
$asunto "Confirme su Cuenta!"
                            
                                
//para el env&iacute;o en formato HTML 
                                
$headers "MIME-Version: 1.0\r\n"
                                
$headers .= "Content-type: text/html; charset=iso-8859-1\r\n"
                            
                                
//direcci&oacute;n del remitente 
                                
$headers .= "From: \"".$who."\" <[email protected]>\n";
                            
                                
//dirección de respuesta, si queremos que sea distinta que la del remitente 
                                
$headers .= "Reply-To: ".$mail."\r\n"
                            
                                
mail($mail,$asunto,$cuerpo,$headers,"-f ".$mail);  
                                
                                return 
true;
                        
}



enviarmail($_GET['ml'],$_GET['cd']);




?>