Contenu javascript vers gmail
Fermé
Bonjour,
Je réalise une application avec phonegap, et j'envoi le contenu d'un mail, de javascript, directement dans le contenu d'un mail, Gmail, un peu comme on le ferait avec mailto.
Mais j'aimerai savoir pourquoi, quand je remplis ce message d'html, il ne le prend pas en compte et me fournit ça comme du texte ?
Je réalise une application avec phonegap, et j'envoi le contenu d'un mail, de javascript, directement dans le contenu d'un mail, Gmail, un peu comme on le ferait avec mailto.
Mais j'aimerai savoir pourquoi, quand je remplis ce message d'html, il ne le prend pas en compte et me fournit ça comme du texte ?
A voir également:
- Contenu javascript vers gmail
- Gmail connexion - Guide
- Gmail - Guide
- Créer un compte gmail - Guide
- Gmail connexion autre compte - Guide
- Compte gmail saturé - Guide
3 réponses
email_total = '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> ' + '<html xmlns="http://www.w3.org/1999/xhtml"> ' + '<head> ' + ' <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> ' + ' <title>Données de vol | AERIA-APP</title> ' + '<style type="text/css"> ' + ' .ExternalClass {width:100%;} ' + ' .ExternalClass, .ExternalClass p, .ExternalClass span, .ExternalClass font, .ExternalClass td, .ExternalClass div { ' + ' line-height: 100%; ' + ' } ' + ' body {-webkit-text-size-adjust:none; -ms-text-size-adjust:none;} ' + ' body {margin:0; padding:0;} ' + ' table td {border-collapse:collapse;border:1px solid #000000; padding:5px 35px;} ' + ' p {margin:0; padding:0; margin-bottom:0;} ' + ' h1, h2, h3, h4, h5, h6 { ' + ' color: black; ' + ' line-height: 100%; ' + ' } ' + ' a, a:link { ' + ' color:#2A5DB0; ' + ' text-decoration: underline; ' + ' } ' + ' body, #body_style { ' + ' background:#fff; ' + ' min-height:1000px; ' + ' color:#000; ' + ' font-family:Arial, Helvetica, sans-serif; ' + ' font-size:12px; ' + ' } ' + ' span.yshortcuts { color:#000; background-color:none; border:none;} ' + ' span.yshortcuts:hover, ' + ' span.yshortcuts:active, ' + ' span.yshortcuts:focus {color:#000; background-color:none; border:none;} ' + ' a:visited { color: #3c96e2; text-decoration: none} ' + ' a:focus { color: #3c96e2; text-decoration: underline} ' + ' a:hover { color: #3c96e2; text-decoration: underline} ' + ' @media only screen and (max-device-width: 480px) { ' + ' body[yahoo] #container1 {display:block !important} ' + ' body[yahoo] p {font-size: 10px} ' + ' } ' + ' @media only screen and (min-device-width: 768px) and (max-device-width: 1024px) { ' + ' body[yahoo] #container1 {display:block !important} ' + ' body[yahoo] p {font-size: 12px} ' + ' } ' + ' </style> ' + ' </head> ' + ' <body style="background:#fff; min-height:1000px; color:#000;font-family:Arial, Helvetica, sans-serif; font-size:12px" ' + ' alink="#FF0000" link="#FF0000" bgcolor="#fff" text="#000" yahoo="fix"> ' + ' <div id="body_style" style="padding:15px"> ' + ' <table cellpadding="0" cellspacing="0" border="0" bgcolor="" width="600" align="center"> ' + ' <tr>' + ' <td style="font-weight:900;" color:#0ff; text:0ff; width="200">ID</td>' + ' <td style="font-weight:900;" color:#0ff; text:0ff; width="200">DATE</td>' + ' <td style="font-weight:900;" color:#0ff; text:0ff; width="200">TYPE</td>' + ' <td style="font-weight:900;" color:#0ff; text:0ff; width="200">MODELE</td>' + ' <td style="font-weight:900;" width="200">IMMATRIC.</td>' + ' <td style="font-weight:900;" width="200">START</td>' + ' <td style="font-weight:900;" width="200">LANDING</td>' + ' <td style="font-weight:900;" width="200">H.START</td>' + ' <td style="font-weight:900;" width="200">H.LANDING</td>' + ' <td style="font-weight:900;" width="200">TOTAL</td>' + ' <td style="font-weight:900;" width="200">MONITOR</td>' + ' <td style="font-weight:900;" width="200">NBR.START</td>' + ' </tr>' + donnee + ' </table> ' + ' </div> ' + ' </body> ' + ' </html> ' ;
Résultat de l'email :
Données de vol | AERIA-APP .ExternalClass {width:100%;} .ExternalClass, .ExternalClass p, .ExternalClass span, .ExternalClass font, .ExternalClass td, .ExternalClass div { line-height: 100%; } body {-webkit-text-size-adjust:none; -ms-text-size-adjust:none;} body {margin:0; padding:0;} table td {border-collapse:collapse;border:1px solid #000000; padding:5px 35px;} p {margin:0; padding:0; margin-bottom:0;} h1, h2, h3, h4, h5, h6 { color: black; line-height: 100%; } a, a:link { color:#2A5DB0; text-decoration: underline; } body, #body_style { background:#fff; min-height:1000px; color:#000; font-family:Arial, Helvetica, sans-serif; font-size:12px; } span.yshortcuts { color:#000; background-color:none; border:none;} span.yshortcuts:hover, span.yshortcuts:active, span.yshortcuts:focus {color:#000; background-color:none; border:none;} a:visited { color: #3c96e2; text-decoration: none} a:focus { color: #3c96e2; text-decoration: underline} a:hover { color: #3c96e2; text-decoration: underline} @media only screen and (max-device-width: 480px) { body[yahoo] #container1 {display:block !important} body[yahoo] p {font-size: 10px} } @media only screen and (min-device-width: 768px) and (max-device-width: 1024px) { body[yahoo] #container1 {display:block !important} body[yahoo] p {font-size: 12px} }
IDDATETYPEMODELEIMMATRIC.STARTLANDINGH.STARTH.LANDINGTOTALMONITORNBR.START00:00:00122/05/2015avioncessnagtrebshebsh12:1812:1800:00:001226/05/2015avioncessnagtoebshebsh15:0515:0500:00:001
Donc on peut voir qu'il garde et supprime certaine balise.
prosthetiks
Messages postés
1189
Date d'inscription
dimanche 7 octobre 2007
Statut
Membre
Dernière intervention
12 juin 2020
431
28 mai 2015 à 12:35
28 mai 2015 à 12:35
Hello,
je peux voir ta fonction d'envoi de mail ? là ou tu set le destinataire, le body, ...
je peux voir ta fonction d'envoi de mail ? là ou tu set le destinataire, le body, ...
prosthetiks
Messages postés
1189
Date d'inscription
dimanche 7 octobre 2007
Statut
Membre
Dernière intervention
12 juin 2020
431
28 mai 2015 à 12:57
28 mai 2015 à 12:57
prosthetiks
Messages postés
1189
Date d'inscription
dimanche 7 octobre 2007
Statut
Membre
Dernière intervention
12 juin 2020
431
28 mai 2015 à 13:30
28 mai 2015 à 13:30
il semblerait que les <div align="..."> soient autorisés
prosthetiks
Messages postés
1189
Date d'inscription
dimanche 7 octobre 2007
Statut
Membre
Dernière intervention
12 juin 2020
431
28 mai 2015 à 13:35
28 mai 2015 à 13:35
tu as essayé de donner la taille via les attributs html ? p.ex <div width="100%">
28 mai 2015 à 11:50