Visualizzazione risultati 1 fino 5 di 5

Discussione: Html nelle e-mail

  1. #1
    L'avatar di marcio
    marcio non è connesso AlterGuru 2500
    Data registrazione
    17-08-2003
    Residenza
    Palermo
    Messaggi
    3,300

    Predefinito

    Ciao a tutti,
    per inviare e-mail tramite php uso il comando
    mail("email@destinatario.it","titolo","corpo","Fro m: dachi@email.it");
    il problema è che non riesco ad inviare mail in html(Se scrivo l'html mi appare tutto il codice come se fosse testo normale) cosa devo fare?

  2. #2
    Guest

    Predefinito

    www.php.net dice:

    <?php
    /* recipients */
    $to = "Mary <mary@example.com>" . ", " ; // note the comma
    $to .= "Kelly <kelly@example.com>";

    /* subject */
    $subject = "Birthday Reminders for August";

    /* message */
    $message = '
    <html>
    <head>
    <title>Birthday Reminders for August</title>
    </head>
    <body>
    <p>Here are the birthdays upcoming in August!</p>
    <table>
    <tr>
    <th>Person</th><th>Day</th><th>Month</th><th>Year</th>
    </tr>
    <tr>
    <td>Joe</td><td>3rd</td><td>August</td><td>1970</td>
    </tr>
    <tr>
    <td>Sally</td><td>17th</td><td>August</td><td>1973</td>
    </tr>
    </table>
    </body>
    </html>
    ';

    /* To send HTML mail, you can set the Content-type header. */
    $headers = "MIME-Version: 1.0\r\n";
    $headers .= "Content-type: text/html; charset=iso-8859-1\r\n";


    /* additional headers */
    $headers .= "From: Birthday Reminder <birthday@example.com>\r\n";

    $headers .= "Cc: birthdayarchive@example.com\r\n";
    $headers .= "Bcc: birthdaycheck@example.com\r\n";

    /* and now mail it */
    mail($to, $subject, $message, $headers);
    ?>
    Non ho mai provato, ma pare che il trucco stia nel mettere l'header giusto :o

  3. #3
    Guest

    Predefinito

    Non capisco perchè scervellarsi a sistemare script quando php ha già incorporato la funzione invia mail e se proprio non vi piace esiste un add-on che fa proprio al caso tuo

  4. #4
    Guest

    Predefinito

    Citazione Originalmente inviato da taranto118
    php ha già incorporato la funzione invia mail
    Ehm... si sta parlando proprio di questa funzione :o

  5. #5
    Guest

Regole di scrittura

  • Non puoi creare nuove discussioni
  • Non puoi rispondere ai messaggi
  • Non puoi inserire allegati.
  • Non puoi modificare i tuoi messaggi
  •