http://www.4shared.com/zip/JqwOFSU8ba/geo6_google_maps_email_php.html
Gracias a todos los que colaboraron!!!
Primero que todo estoy usando PHPMailer por lo que mas adelante pienso consumir miles de correos al dia y usar SMTP por eso no use simplemente mail. Y pues estoy tratando de hacer un POST Dinamico con AJAX a al script donde envio el email y no me da.
Index.html
Código
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <meta name="robots" content="noindex,follow"/> <title>Geolocalizacion con HTML5</title> <link rel="shortcut icon" href="/favicon.ico" /> <style type="text/css">img{border:0}</style> </head> <body onload="detectar()"> <div id="mapa"> </div> <!--email --> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js" type="text/javascript"></script> <script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script> <!--email --> <script src="http://code.google.com/apis/gears/gears_init.js" type="text/javascript" charset="utf-8"></script> <script src="geo.js" type="text/javascript" charset="utf-8"></script> <script language="javascript"> function detectar(){ if(geo_position_js.init()) { document.getElementById('mapa').innerHTML="Leyendo..."; geo_position_js.getCurrentPosition(mostra_ubicacion,function(){document.getElementById('mapa').innerHTML="No se pudo detectar la ubicación"},{enableHighAccuracy:true}); } else { document.getElementById('mapa').innerHTML="La geolocalización no funciona en este navegador."; } } function mostra_ubicacion(p){ var coords = p.coords.latitude + "," + p.coords.longitude; var url= "email_geo_simple.php"; $.ajax({ type: "post", url:url, data:{coord:coords}, beforeSend: function() { $('#mensaje').html("Cargando..."); }, success: function(datos) { $('#mensaje').html(datos); } }); document.getElementById('mapa').innerHTML="<a href=\"http://maps.google.com/?q="+coords+"\"><img src=\"http://maps.google.com/maps/api/staticmap?center="+coords+"&maptype=roadmap&size=400x400&zoom=15&markers=size:mid|"+coords+"&sensor=false\" alt=\"mapa\"/></a>"; } </script> </body> </html>
email_geo_simple.php
Código
<?php require_once 'email/class.phpmailer.php'; $coord = $_POST["coord"]; $mail = new PHPMailer(true); //defaults to using php "mail()"; the true param means it will throw exceptions on errors, which we need to catch $email = '<a href=\"http://maps.google.com/?q='.$coord.'"\"><img src=\"http://maps.google.com/maps/api/staticmap?center='.$coord.'&maptype=roadmap&size=400x400&zoom=15&markers=size:mid|'.$coord.'&sensor=false\" alt=\"mapa\"/></a>'; try { $mail->AddReplyTo('contacto@medica.com.co', 'Medica'); $mail->AddAddress('proyectosweb@sistemasycontroles.net', 'Medica'); $mail->SetFrom('contacto@medica.com.co', 'Medica'); $mail->AddReplyTo('paisa_net@hotmail.com', 'Medica'); $mail->Subject = 'Su perfil medico ha sido consultado'; $mail->AltBody = 'Para ver este mensaje, por favor use un cliente de correo compatible con HTML!'; // optional - MsgHTML will create an alternate automatically //$mail->MsgHTML(file_get_contents('contents.html')); $mail->MsgHTML($email); //$mail->AddAttachment('images/phpmailer.gif'); // attachment //$mail->AddAttachment('images/phpmailer_mini.gif'); // attachment $mail->Send(); echo "Message Sent OK<p></p>\n"; } catch (phpmailerException $e) { echo $e->errorMessage(); //Pretty error messages from PHPMailer } catch (Exception $e) { echo $e->getMessage(); //Boring error messages from anything else! } ?>
Si alguien me sabe indicar por que no se ejecuta : email_geo_simple.php, se agradece.
Script completo:
http://www.4shared.com/zip/ynY7K11nba/geo6.html