IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

Langage PHP Discussion :

envoie des emails


Sujet :

Langage PHP

  1. #1
    Nouveau membre du Club
    Inscrit en
    Juillet 2008
    Messages
    37
    Détails du profil
    Informations forums :
    Inscription : Juillet 2008
    Messages : 37
    Points : 28
    Points
    28
    Par défaut envoie des emails
    bonjour j'ai un petit problème dans mon message à envoyer
    les données qui viennent avec un POST ne s'affichent pas

    voici mon code:

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    <table>
     
    <tr><th style="	height:3.5em; padding:5px 7px 5px 7px; empty-cells:show; background-color:#a0d651; text-align:left; color:rgb(255,255,255);	font-weight:bold;font-size:110%;" scope="col">
    Mr/Mme :</th><td> <?php echo $_POST[\'nom\'];  ?></td></tr>
     
    <tr><th style="	height:3.5em; padding:5px 7px 5px 7px; empty-cells:show; background-color:#a0d651; text-align:left; color:rgb(255,255,255);	font-weight:bold;font-size:110%;" scope="col">
    Email :</th><td> <?php echo $_POST[\'email\']; ?></td></tr>
    <table>
    merci en avance

  2. #2
    Modérateur
    Avatar de sabotage
    Homme Profil pro
    Inscrit en
    Juillet 2005
    Messages
    29 208
    Détails du profil
    Informations personnelles :
    Sexe : Homme

    Informations forums :
    Inscription : Juillet 2005
    Messages : 29 208
    Points : 44 155
    Points
    44 155
    Par défaut
    Il ne faut pas echapper tes apostrophes.

  3. #3
    Nouveau membre du Club
    Inscrit en
    Juillet 2008
    Messages
    37
    Détails du profil
    Informations forums :
    Inscription : Juillet 2008
    Messages : 37
    Points : 28
    Points
    28
    Par défaut
    Citation Envoyé par sabotage Voir le message
    Il ne faut pas echapper tes apostrophes.
    mais je suis en code html

    voici tout mon code:

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    $message_html='<html>
         <head>
         <title></title>
         </head>
         <body>
     
     
    <div style="width:650px; margin:0 0 0 30px;">
    <div style="width:600px; height:auto; " >
     
     
    <table>
     
    <tr><th style="	height:3.5em; padding:5px 7px 5px 7px; empty-cells:show; background-color:#a0d651; text-align:left; color:rgb(255,255,255);	font-weight:bold;font-size:110%;" scope="col">
    Mr/Mme :</th><td> <?php echo $nom; ?></td></tr>
     
    <tr><th style="	height:3.5em; padding:5px 7px 5px 7px; empty-cells:show; background-color:#a0d651; text-align:left; color:rgb(255,255,255);	font-weight:bold;font-size:110%;" scope="col">
    Email :</th><td> <?php echo $_POST[\'email\']; ?></td></tr>
     
    <tr><th style="	height:3.5em; padding:5px 7px 5px 7px; empty-cells:show; background-color:#a0d651; text-align:left; color:rgb(255,255,255);	font-weight:bold;font-size:110%;" scope="col">
    Tel :</th><td> <?php echo $_POST[\'tel\']; ?></td></tr>
     
    <tr><th style="	height:3.5em; padding:5px 7px 5px 7px; empty-cells:show; background-color:#a0d651; text-align:left; color:rgb(255,255,255);	font-weight:bold;font-size:110%;" scope="col">
    Nom Société :</th><td> <?php echo $_POST[\'ste\']; ?></td></tr>
     
    <tr><th style="	height:3.5em; padding:5px 7px 5px 7px; empty-cells:show; background-color:#a0d651; text-align:left; color:rgb(255,255,255);	font-weight:bold;font-size:110%;" scope="col">
    Taille Société :</th><td> <?php echo $_POST[\'taille\']; ?></td></tr>
     
    <tr><th style="	height:3.5em; padding:5px 7px 5px 7px; empty-cells:show; background-color:#a0d651; text-align:left; color:rgb(255,255,255);	font-weight:bold;font-size:110%;" scope="col">
    Domaines :</th><td> <?php echo $_POST[\'domaine\']; ?></td></tr>
     
    <tr><th style="	height:3.5em; padding:5px 7px 5px 7px; empty-cells:show; background-color:#a0d651; text-align:left; color:rgb(255,255,255);	font-weight:bold;font-size:110%;" scope="col">
    Code     :</th><td> <?php echo $_POST[\'code\']; ?></td></tr>
     
    <tr><th style="	height:3.5em; padding:5px 7px 5px 7px; empty-cells:show; background-color:#a0d651; text-align:left; color:rgb(255,255,255);	font-weight:bold;font-size:110%;" scope="col">
    Intitule :</th><td> <?php echo $_POST[\'intitule\']; ?></td></tr>
     
    </table>
     
    <br />
    </div>
     
    </div>
     
    	 </body>
         </html>';

  4. #4
    Modérateur
    Avatar de sabotage
    Homme Profil pro
    Inscrit en
    Juillet 2005
    Messages
    29 208
    Détails du profil
    Informations personnelles :
    Sexe : Homme

    Informations forums :
    Inscription : Juillet 2005
    Messages : 29 208
    Points : 44 155
    Points
    44 155
    Par défaut
    Tu ne peux pas avoir du PHP à l'intérieur du PHP.
    Inséres tes variables tout simplement :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    $message_html='<html>
         <head>
         <title></title>
         </head>
         <body>
    .......
    <td>' . $nom  . '</td></tr><td>' . $_POST['email']  . '......';

  5. #5
    Nouveau membre du Club
    Inscrit en
    Juillet 2008
    Messages
    37
    Détails du profil
    Informations forums :
    Inscription : Juillet 2008
    Messages : 37
    Points : 28
    Points
    28
    Par défaut
    c vraiment super d'aider un debutant merci sabotage

+ Répondre à la discussion
Cette discussion est résolue.

Discussions similaires

  1. Réponses: 4
    Dernier message: 04/03/2011, 17h18
  2. Envoi des EMAIL
    Par NWILA dans le forum Pentaho
    Réponses: 6
    Dernier message: 18/05/2010, 14h33
  3. Réponses: 3
    Dernier message: 15/07/2008, 19h09

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo