Visualizzazione risultati 1 fino 13 di 13

Discussione: Inviare mail con allegati

  1. #1
    L'avatar di gve
    gve
    gve non è connesso Utente storico
    Data registrazione
    26-01-2003
    Residenza
    Brescia
    Messaggi
    2,964

    Predefinito

    C'è un modo in php per allegare un file a un messaggio inviato con mail(), o comunque esiste un sistema per spedire mail con allegati?
    | Regolamento del Forum | Regolamento di AlterVista | FAQ di AlterVista | Netiquette |

    GVE = GVE Virtual Extension
    AVCM #: 6637

  2. #2
    Guest

    Predefinito

    Citazione Originalmente inviato da gve
    C'è un modo in php per allegare un file a un messaggio inviato con mail(), o comunque esiste un sistema per spedire mail con allegati?
    io lo faccio

    tra parentesi il famoso file rex.xml viene salvato e viene spedito

    ti posto il mio
    finito.html


    <form vname="FormName" action="manda.php" method="post" enctype="multipart/form-data" name="form">
    <table>
    <tr><td>Inserisci il tuo nome e qualche nota:</td></tr><tr>
    <td><textarea rows="3" name="msg" cols="60"></textarea></td></tr>


    <tr><td> <input type="hidden" name="MAX_FILE_SIZE" value="100000"><input type="hidden" name="NomFichier_name" value="rec.xml">


    <input type="submit" value="Recensione salvata. Clicka qui per inviare. ">
    </td></tr>
    </table>

    </form>


    e il file manda.php

    <?

    /* PARAMETRAGE DU SCRIPT */

    $dest = "bastamail@almioindirizzo.com";/* A qui s'adresse ce mail (TO) */
    $copy_dest = ""; /* Email pour la Copie Carbone (CC) */
    $cache_dest = "";
    $subject = "Recensione inviata automaticamente dal sito"; /* Email pour la Copie Carbone (BCC) */
    $objet_page = "Recensione inviata automaticamente dal sito"; /* Objet du mail (utile si vous utilisez ce script sur plusieures pages de votre site) */
    $redirection = "collabora.html"; /* Redirection vers une autre page une fois l'envoie effectué */
    $priority = "3"; /* Permet de définir la priorité du mail, les valeurs vont de 1 (urgent) à 5 (priorité basse) */

    $reponse=StripSlashes("La recensione è stata allegata ed inviata"); /* Réponse de l'envoi du mail*/

    /* FIN DU PARAMETRAGE */


    /* ########################### NE RIEN TOUCHER EN DESSOUS ################################ */

    $url_redir = $redirection;

    class Mail {

    var $sendto= array();
    var $from, $msubject;
    var $acc= array();
    var $abcc= array();
    var $aattach= array();
    var $priorities= array( '1 (Highest)', '2 (High)', '3 (Normal)', '4 (Low)', '5 (Lowest)' );


    // Mail contructor

    function Mail() {

    $this->autoCheck( true );
    }


    /* autoCheck( $boolean )
    * activate or desactivate the email addresses validator
    * ex: autoCheck( true ) turn the validator on
    * by default autoCheck feature is on
    */

    function autoCheck( $bool ) {

    if( $bool )
    $this->checkAddress = true;
    else
    $this->checkAddress = false;
    }


    /* Subject( $subject )
    * define the subject line of the email
    * $subject: any valid mono-line string
    */

    function Subject( $subject ) {

    $this->msubject = strtr( $subject, "\r\n" , " " );
    }


    /* From( $from )
    * set the sender of the mail
    * $from should be an email address
    */

    function From( $from ) {

    if( ! is_string($from) ) {
    echo "Class Mail: Erreur, From n'est pas de la bonne forme";
    exit;
    }

    $this->from= $from;
    }


    /* To( $to )
    * set the To ( recipient )
    * $to : email address, accept both a single address or an array of addresses
    */

    function To( $to ) {

    // TODO : test validité sur to
    if( is_array( $to ) )
    $this->sendto= $to;
    else
    $this->sendto[] = $to;

    if( $this->checkAddress == true )
    $this->CheckAdresses( $this->sendto );
    }


    /* Cc()
    * set the CC headers ( carbon copy )
    * $cc : email address(es), accept both array and string
    */

    function Cc( $cc ) {

    if( is_array($cc) )
    $this->acc= $cc;
    else
    $this->acc[]= $cc;

    if( $this->checkAddress == true )
    $this->CheckAdresses( $this->acc );
    }


    /* Bcc()
    * set the Bcc headers ( blank carbon copy ).
    * $bcc : email address(es), accept both array and string
    */

    function Bcc( $bcc ) {

    if( is_array($bcc) ) {
    $this->abcc = $bcc;
    } else {
    $this->abcc[]= $bcc;
    }

    if( $this->checkAddress == true )
    $this->CheckAdresses( $this->abcc );
    }


    /* Body()
    * set the body of the mail ( message )
    */

    function Body( $body ) {

    $this->body= $body;
    }


    /* Send()
    * fornat and send the mail
    */

    function Send() {

    // build the headers
    $this->_build_headers();

    // include attached files
    if( sizeof( $this->aattach > 0 ) ) {
    $this->_build_attachement();
    $body = $this->fullBody . $this->attachment;
    }

    // envoie du mail aux destinataires principaux
    for( $i=0; $i< sizeof($this->sendto); $i++ ) {
    $res = mail($this->sendto[$i], $this->msubject,$body, $this->headers);
    // TODO : trmt res
    }

    }


    /* Organization( $org )
    * set the Organisation header
    */

    function Organization( $org ) {

    if( trim( $org != "" ) )
    $this->organization= $org;
    }


    /* Priority( $priority )
    * set the mail priority
    * $priority : integer taken between 1 (highest) and 5 ( lowest )
    * ex: $m->Priority(1) ; => Highest
    */

    function Priority( $priority ) {

    if( ! intval( $priority ) )
    return false;

    if( ! isset( $this->priorities[$priority-1]) )
    return false;

    $this->priority= $this->priorities[$priority-1];

    return true;
    }


    /* Attach( $filename, $filetype )
    * attach a file to the mail
    * $filename : path of the file to attach
    * $filetype : MIME-type of the file. default to 'application/x-unknown-content-type'
    * $disposition : instruct the Mailclient to display the file if possible ("inline") or always as a link ("attachment")
    * possible values are "inline", "attachment"
    */

    function Attach( $filename, $filetype='application/x-unknown-content-type', $disposition = "inline" ) {

    // TODO : si filetype="", alors chercher dans un tablo de MT connus / extension du fichier
    $this->aattach[] = $filename;
    $this->actype[] = $filetype;
    $this->adispo[] = $disposition;
    }


    /* Get()
    * return the whole e-mail , headers + message
    * can be used for displaying the message in plain text or logging it
    */

    function Get() {

    $this->_build_headers();
    if( sizeof( $this->aattach > 0 ) ) {
    $this->_build_attachement();
    $this->body= $this->body . $this->attachment;
    }
    $mail = $this->headers;
    $mail .= "\n$this->body";
    return $mail;
    }


    /* ValidEmail( $email )
    * return true if email adress is ok - regex from Manuel Lemos (mlemos@acm.org)
    * $address : email address to check
    */

    function ValidEmail($address) {

    if( ereg( ".*<(.+)>", $address, $regs ) ) {
    $address = $regs[1];
    }

    if(ereg( "^[^@ ]+@([a-zA-Z0-9\-]+\.)+([a-zA-Z0-9\-]{2}|net|fr|com|gov|mil|org|edu|int)\$",$address) )
    return true;
    else
    return false;
    }


    /* CheckAdresses()
    * check validity of email addresses
    * if unvalid, output an error message and exit, this may be customized
    * $aad : array of emails addresses
    */

    function CheckAdresses( $aad ) {

    for($i=0;$i< sizeof( $aad); $i++ ) {

    if( ! $this->ValidEmail( $aad[$i]) ) {
    echo "Class Mail, method Mail : Adresse Invalide $aad[$i]";
    exit;
    }
    }
    }


    /********************** PRIVATE METHODS BELOW **********************************/



    /* _build_headers()
    * [INTERNAL] build the mail headers
    */

    function _build_headers() {

    // creation du header mail

    $this->headers= "From: $this->from\n";

    $this->to= implode( ", ", $this->sendto );

    if( count($this->acc) > 0 ) {
    $this->cc= implode( ", ", $this->acc );
    $this->headers .= "CC: $this->cc\n";
    }

    if( count($this->abcc) > 0 ) {
    $this->bcc= implode( ", ", $this->abcc );
    $this->headers .= "BCC: $this->bcc\n";
    }

    if( $this->organization != "" )
    $this->headers .= "Organization: $this->organization\n";

    if( $this->priority != "" )
    $this->headers .= "X-Priority: $this->priority\n";
    }



    /*
    * _build_attachement()
    * internal use only - check and encode attach file(s)
    */

    function _build_attachement() {

    $this->boundary= "------------" . md5( uniqid("myboundary") ); // TODO : variable bound

    $this->headers .= "MIME-Version: 1.0\nContent-Type: multipart/mixed;\n boundary=\"$this->boundary\"\n\n";
    $this->fullBody = "This is a multi-part message in MIME format.\n--$this->boundary\nContent-Type: text/plain; charset=us-ascii\nContent-Transfer-Encoding: 7bit\n\n" . $this->body ."\n";
    $sep= chr(13) . chr(10);

    $ata= array();
    $k=0;

    // for each attached file, do...
    for( $i=0; $i < sizeof( $this->aattach); $i++ ) {

    $filename = $this->aattach[$i];
    $basename = basename($filename);
    $ctype = $this->actype[$i]; // content-type
    $disposition = $this->adispo[$i];

    if( ! file_exists( $filename) ) {
    echo "Class Mail, method attach : file $filename can't be found"; exit;
    }
    $subhdr= "--$this->boundary\nContent-type: $ctype;\n name=\"$basename\"\nContent-Transfer-Encoding: base64\nContent-Disposition: $disposition;\n filename=\"$basename\"\n";
    $ata[$k++] = $subhdr;
    // non encoded line length
    $linesz= filesize( $filename)+1;
    $fp= fopen( $filename, 'r' );
    $data= base64_encode(fread( $fp, $linesz));
    fclose($fp);
    $ata[$k++] = chunk_split( $data );
    }

    $this->attachment= implode($sep, $ata);
    }


    } // class Mail


    /* Function redirection sans Header */
    function redir($url_redir) {

    echo "<script language=\"javascript\">";
    echo "window.location=('$url_redir');";
    echo "</script>";
    }

    $subject=StripSlashes($subject);

    $msg=StripSlashes($msg);
    $msg="Message depuis votre site web avec comme objet : \"$objet_page\" :
    $msg";


    /* Contruction du mail */
    $m= new Mail; // create the mail
    $m->From( "$email" );

    $m->To( "$dest");

    $m->Subject( "$subject" );
    $m->Body( $msg); // set the body


    /* S'il y a une copie conforme du mail */
    if ($copy_dest!="") {

    $m->Cc( "$copy_dest");
    }
    $m->Priority($priority) ;


    /* S'il y a une copie cachée du mail */
    if ($cache_dest!="") {

    $m->Bcc( "$cache_dest");
    }
    $m->Priority($priority) ;


    /* J'attache mon fichier */
    if ("$NomFichier_name"!="") {


    $m->Attach( "$NomFichier_name", "application/octet-stream" );
    }

    $m->Send(); /* Envoi du mail */


    if ("$NomFichier_name"!="") {

    Unlink("$NomFichier_name");
    }

    echo "$reponse"; /* Affichage du message d'envoi réussi */


    if ("$redirection"!="") {

    redir("$url_redir"); /* je renvoie sur une page spécifique */
    }
    ?>

  3. #3
    L'avatar di gve
    gve
    gve non è connesso Utente storico
    Data registrazione
    26-01-2003
    Residenza
    Brescia
    Messaggi
    2,964

    Predefinito

    Grazie mille, ora lo provo.
    | Regolamento del Forum | Regolamento di AlterVista | FAQ di AlterVista | Netiquette |

    GVE = GVE Virtual Extension
    AVCM #: 6637

  4. #4
    Guest

    Predefinito

    Ciao GVE!Per caso hai provato il codice qui sopra? Se funziona riesci a modificare il mio?Thanx!

  5. #5
    L'avatar di gve
    gve
    gve non è connesso Utente storico
    Data registrazione
    26-01-2003
    Residenza
    Brescia
    Messaggi
    2,964

    Predefinito

    Non ho ancora provato, probabilmente lo farò domani o dopodomani perchè ho un po' di cose in ballo e volevo riadattarlo un poco (oltre a cercare di capirlo: ho questo vizio che mi porta sempre via più tempo del necessario per far funzionare le cose). Comunque ti prometto che appena ho fatto lo adatto al tuo problema.
    | Regolamento del Forum | Regolamento di AlterVista | FAQ di AlterVista | Netiquette |

    GVE = GVE Virtual Extension
    AVCM #: 6637

  6. #6
    L'avatar di gve
    gve
    gve non è connesso Utente storico
    Data registrazione
    26-01-2003
    Residenza
    Brescia
    Messaggi
    2,964

    Predefinito

    OK, grazie tonysuper, lo script funziona a meraviglia.
    | Regolamento del Forum | Regolamento di AlterVista | FAQ di AlterVista | Netiquette |

    GVE = GVE Virtual Extension
    AVCM #: 6637

  7. #7
    Guest

    Predefinito

    Citazione Originalmente inviato da gve
    OK, grazie tonysuper, lo script funziona a meraviglia.
    Bene sono contento .. .
    io invece sto cercando di trasferire le mie statistiche fatte con phpstats su freesql e mi sto scimunendo ...

  8. #8
    L'avatar di gve
    gve
    gve non è connesso Utente storico
    Data registrazione
    26-01-2003
    Residenza
    Brescia
    Messaggi
    2,964

    Predefinito

    Citazione Originalmente inviato da tonysuper
    io invece sto cercando di trasferire le mie statistiche fatte con phpstats su freesql e mi sto scimunendo ...
    Qual'è il problema? Forse (dico, forse) ti posso aiutare.
    | Regolamento del Forum | Regolamento di AlterVista | FAQ di AlterVista | Netiquette |

    GVE = GVE Virtual Extension
    AVCM #: 6637

  9. #9
    Guest

    Predefinito

    Citazione Originalmente inviato da gve
    Citazione Originalmente inviato da tonysuper
    io invece sto cercando di trasferire le mie statistiche fatte con phpstats su freesql e mi sto scimunendo ...
    Qual'è il problema? Forse (dico, forse) ti posso aiutare.
    niente risolto ... freesql non vuole più di un certo numero di query al giorno e il mio data è troppo grande...
    vabbè il mio sito sarà con database bianco per una quindicina di giorni (stiam del tempo ceh mi rimane per raccattare i centesimi)

  10. #10
    Guest

    Predefinito

    in che senso freesql non vuole più di un certo numero di query al giorno?

  11. #11
    Guest

    Predefinito

    Citazione Originalmente inviato da gve
    OK, grazie tonysuper, lo script funziona a meraviglia.
    Bene!Allora funziona! Per caso riesci a modificarlo per l'email j.godard@tiscali.it e a riportarlo qui? Te ne sarò grata a vita!

  12. #12
    Guest

    Predefinito

    Citazione Originalmente inviato da elypurple
    Citazione Originalmente inviato da gve
    OK, grazie tonysuper, lo script funziona a meraviglia.
    Bene!Allora funziona! Per caso riesci a modificarlo per l'email j.godard@tiscali.it e a riportarlo qui? Te ne sarò grata a vita!
    ehmmm non mandatemi decine di lettere automaticamente dal sito per provare... vi assicuro che funziona :?

  13. #13
    L'avatar di gve
    gve
    gve non è connesso Utente storico
    Data registrazione
    26-01-2003
    Residenza
    Brescia
    Messaggi
    2,964

    Predefinito

    Ehm, io lo avevo modificato per far spedire alla mia mail, èpoi lo ho solo testato una volta per vedere il risultato: penso di modificarlo un po' prima di utilizzarlo, sia al fine di imparare qualcosa di nuovo che perchè alcune cosa non mi gustano (ad es, l'allegato arriva con un nome casuale e non col nome originale).

    Ely, devi modificare $dest='tonysuper@altervista.org'; con $dest='j.godard@tiscali.it' se lo script ti va bene così.

    Poi puoi personalizzare i messaggi e altre cose: guarda i commenti accanto alle variabili (sono quelle che iniziano con $ :) ): io non so il francese, però sono intuibili.
    | Regolamento del Forum | Regolamento di AlterVista | FAQ di AlterVista | Netiquette |

    GVE = GVE Virtual Extension
    AVCM #: 6637

Regole di scrittura

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