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

Bibliothèques et frameworks PHP Discussion :

Envoi d'un mail à plusieurs destinataires


Sujet :

Bibliothèques et frameworks PHP

  1. #1
    Membre du Club
    Profil pro
    Inscrit en
    Février 2007
    Messages
    219
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Février 2007
    Messages : 219
    Points : 61
    Points
    61
    Par défaut Envoi d'un mail à plusieurs destinataires
    Bonjour,
    Donc sur une page web, je choisi le fichier que je veux envoyer avec mon mail et je clique sur envoyer. seulement je voudrais envoyer à toutes les personnes qui sont dans ma base de données (operateurs_email). J'ai tenté avec un while mais ça ne marche pas où alors je le fais mal. Quelqu'un peut m'aider?
    Voici 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
    <?php 
    include "inc/conf.inc";
    include "libmail.php";//placez dans le repertoire courant donc
    $m= new Mail; // demarre l'email
    $m->From( "email" );// enlever les guillements pour placer une variable
    $m->Subject( "Email avec attachement" );//idem
    $message= "Veuillez trouver ci-joint votre test de francais";
    $m->Body( $message); // corps du message
    $sql="SELECT operateurs_email FROM operateurs WHERE operateurs_email<>'';";
    $result=mysql_query($sql);
    while($rs=mysql_fetch_array($result)) {
    //  $m->Cc( "contact@autredomaine.com");//facultatif
    $m->Bcc( $rs);//facultatif
    $m->Priority(4) ; // Priorité Basse
    $m->Attach($_FILES['fichier']['tmp_name'], "application/pdf" ) ; // définition du type mime du document joint image/gif
    $m->Send();
    if($m)
         {
              echo 'Le message a bien été envoyé';
          }
         else
         {
              echo 'Le message n\'a pu être envoyé';
         } 
    }
    ?>

  2. #2
    Membre éclairé Avatar de Korko Fain
    Profil pro
    Étudiant
    Inscrit en
    Août 2005
    Messages
    632
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Août 2005
    Messages : 632
    Points : 718
    Points
    718
    Par défaut
    Montre ton libmail.php stp

  3. #3
    Membre actif
    Profil pro
    Ingénieur
    Inscrit en
    Mars 2007
    Messages
    199
    Détails du profil
    Informations personnelles :
    Localisation : France, Seine Saint Denis (Île de France)

    Informations professionnelles :
    Activité : Ingénieur

    Informations forums :
    Inscription : Mars 2007
    Messages : 199
    Points : 291
    Points
    291
    Par défaut
    Bonjour,

    Es tu certain que ton hébergeur autorise que tu solicites son serveur de courrier
    de cette façon ?

    Essaye, encore une fois si ton hébergeur te le permet, de construire un BCC contenant l'ensemble de tes destinataires et ensuite fait appel qu'une seule fois
    à ta méthode Send.

    Je ne connais pas libmail.php.

  4. #4
    Membre du Club
    Profil pro
    Inscrit en
    Février 2007
    Messages
    219
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Février 2007
    Messages : 219
    Points : 61
    Points
    61
    Par défaut
    Je ne sais pas si je peux avec mon hebergeur cra pour l'instant je le fais avec easy php. Mais au pire même si je peux pas les mettre en bcc je peux les mettre en To ça n'a pa d'importance. Voici libmail.php
    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
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    282
    283
    284
    285
    286
    287
    288
    289
    290
    291
    292
    293
    294
    295
    296
    297
    298
    299
    300
    301
    302
    303
    304
    305
    306
    307
    308
    309
    310
    311
    312
    313
    314
    315
    316
    317
    318
    319
    320
    321
    322
    323
    324
    325
    326
    327
    328
    329
    330
    331
    332
    333
    334
    335
    336
    337
    338
    339
    340
    341
    342
    343
    344
    345
    346
    347
    348
    349
    350
    351
    352
    353
    354
    355
    356
    357
    358
    359
    360
    361
    362
    363
    364
    365
    366
    367
    368
    369
    370
    371
    372
    373
    374
    375
    376
    377
    378
    379
    380
    381
    382
    383
    384
    385
    386
    387
    388
    389
    390
    391
    392
    393
    394
    395
    396
    397
    398
    399
    400
    401
    402
    403
    404
    405
    406
    407
    408
    409
    410
    411
    412
    413
    414
    415
    416
    417
    418
    419
    420
    421
    422
    423
    class Mail
    {
    	/*
    	list of To addresses
    	@var	array
    	*/
    	var $sendto = array();
    	/*
    	@var	array
    	*/
    	var $acc = array();
    	/*
    	@var	array
    	*/
    	var $abcc = array();
    	/*
    	paths of attached files
    	@var array
    	*/
    	var $aattach = array();
    	/*
    	list of message headers
    	@var array
    	*/
    	var $xheaders = array();
    	/*
    	message priorities referential
    	@var array
    	*/
    	var $priorities = array( '1 (Highest)', '2 (High)', '3 (Normal)', '4 (Low)', '5 (Lowest)' );
    	/*
    	character set of message
    	@var string
    	*/
    	var $charset = "us-ascii";
    	var $ctencoding = "7bit";
    	var $receipt = 0;
     
     
    /*
     
    	Mail contructor
     
    */
     
    function Mail()
    {
    	$this->autoCheck( true );
    	$this->boundary= "--" . md5( uniqid("myboundary") );
    }
     
     
    /*		
     
    activate or desactivate the email addresses validator
    ex: autoCheck( true ) turn the validator on
    by default autoCheck feature is on
     
    @param boolean	$bool set to true to turn on the auto validation
    @access public
    */
    function autoCheck( $bool )
    {
    	if( $bool )
    		$this->checkAddress = true;
    	else
    		$this->checkAddress = false;
    }
     
     
    /*
     
    Define the subject line of the email
    @param string $subject any monoline string
     
    */
    function Subject( $subject )
    {
    	$this->xheaders['Subject'] = strtr( $subject, "\r\n" , "  " );
    }
     
     
    /*
     
    set the sender of the mail
    @param string $from should be an email address
     
    */
     
    function From( $from )
    {
     
    	if( ! is_string($from) ) {
    		echo "Class Mail: error, From is not a string";
    		exit;
    	}
    	$this->xheaders['From'] = $from;
    }
     
    /*
     set the Reply-to header 
     @param string $email should be an email address
     
    */ 
    function ReplyTo( $address )
    {
     
    	if( ! is_string($address) ) 
    		return false;
     
    	$this->xheaders["Reply-To"] = $address;
     
    }
     
     
    /*
    add a receipt to the mail ie.  a confirmation is returned to the "From" address (or "ReplyTo" if defined) 
    when the receiver opens the message.
     
    @warning this functionality is *not* a standard, thus only some mail clients are compliants.
     
    */
     
    function Receipt()
    {
    	$this->receipt = 1;
    }
     
     
    /*
    set the mail recipient
    @param string $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( text [, charset] )
     *		set the body (message) of the mail
     *		define the charset if the message contains extended characters (accents)
     *		default to us-ascii
     *		$mail->Body( "mél en français avec des accents", "iso-8859-1" );
     */
    function Body( $body, $charset="" )
    {
    	$this->body = $body;
     
    	if( $charset != "" ) {
    		$this->charset = strtolower($charset);
    		if( $this->charset != "us-ascii" )
    			$this->ctencoding = "8bit";
    	}
    }
     
     
    /*		Organization( $org )
     *		set the Organization header
     */
     
    function Organization( $org )
    {
    	if( trim( $org != "" )  )
    		$this->xheaders['Organization'] = $org;
    }
     
     
    /*		Priority( $priority )
     *		set the mail priority 
     *		$priority : integer taken between 1 (highest) and 5 ( lowest )
     *		ex: $mail->Priority(1) ; => Highest
     */
     
    function Priority( $priority )
    {
    	if( ! intval( $priority ) )
    		return false;
     
    	if( ! isset( $this->priorities[$priority-1]) )
    		return false;
     
    	$this->xheaders["X-Priority"] = $this->priorities[$priority-1];
     
    	return true;
     
    }
     
     
    /*	
     Attach a file to the mail
     
     @param string $filename : path of the file to attach
     @param string $filetype : MIME-type of the file. default to 'application/x-unknown-content-type'
     @param string $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 = "", $disposition = "inline" )
    {
    	// TODO : si filetype="", alors chercher dans un tablo de MT connus / extension du fichier
    	if( $filetype == "" )
    		$filetype = "application/x-unknown-content-type";
     
    	$this->aattach[] = $filename;
    	$this->actype[] = $filetype;
    	$this->adispo[] = $disposition;
    }
     
    /*
     
    Build the email message
     
    @access protected
     
    */
    function BuildMail()
    {
     
    	// build the headers
    	$this->headers = "";
    //	$this->xheaders['To'] = implode( ", ", $this->sendto );
     
    	if( count($this->acc) > 0 )
    		$this->xheaders['CC'] = implode( ", ", $this->acc );
     
    	if( count($this->abcc) > 0 ) 
    		$this->xheaders['BCC'] = implode( ", ", $this->abcc );
     
     
    	if( $this->receipt ) {
    		if( isset($this->xheaders["Reply-To"] ) )
    			$this->xheaders["Disposition-Notification-To"] = $this->xheaders["Reply-To"];
    		else 
    			$this->xheaders["Disposition-Notification-To"] = $this->xheaders['From'];
    	}
     
    	if( $this->charset != "" ) {
    		$this->xheaders["Mime-Version"] = "1.0";
    		$this->xheaders["Content-Type"] = "text/plain; charset=$this->charset";
    		$this->xheaders["Content-Transfer-Encoding"] = $this->ctencoding;
    	}
     
    	//$this->xheaders["X-Mailer"] = "Php/libMailv1.3";
    	global $cfg;
    	$this->xheaders["X-Mailer"] = $cfg['Version'] . " (libMailv1.3)";
     
    	// include attached files
    	if( count( $this->aattach ) > 0 ) {
    		$this->_build_attachement();
    	} else {
    		$this->fullBody = $this->body;
    	}
     
    	reset($this->xheaders);
    	while( list( $hdr,$value ) = each( $this->xheaders )  ) {
    		if( $hdr != "Subject" )
    			$this->headers .= "$hdr: $value\n";
    	}
     
     
    }
     
    /*		
    	fornat and send the mail
    	@access public
     
    */ 
    function Send()
    {
    	$this->BuildMail();
     
    	$this->strTo = implode( ", ", $this->sendto );
     
    	// envoie du mail
    	$res = mail( $this->strTo, $this->xheaders['Subject'], $this->fullBody, $this->headers );
     
    }
     
     
     
    /*
     *		return the whole e-mail , headers + message
     *		can be used for displaying the message in plain text or logging it
     */
     
    function Get()
    {
    	$this->BuildMail();
    	$mail = "To: " . $this->strTo . "\n";
    	$mail .= $this->headers . "\n";
    	$mail .= $this->fullBody;
    	return $mail;
    }
     
     
    /*
    	check an email address validity
    	@access public
    	@param string $address : email address to check
    	@return true if email adress is ok
     */
     
    function ValidEmail($address)
    {
    	if( ereg( ".*<(.+)>", $address, $regs ) ) {
    		$address = $regs[1];
    	}
     	if(ereg( "^[^@  ]+@([a-zA-Z0-9\-]+\.)+([a-zA-Z0-9\-]{2}|net|com|gov|mil|org|edu|int)\$",$address) ) 
     		return true;
     	else
     		return false;
    }
     
     
    /*
     
    	check validity of email addresses 
    	@param	array $aad - 
    	@return if unvalid, output an error message and exit, this may -should- be customized
     
     */
     
    function CheckAdresses( $aad )
    {
    	for($i=0;$i< count( $aad); $i++ ) {
    		if( ! $this->ValidEmail( $aad[$i]) ) {
    			echo "Class Mail, method Mail : invalid address $aad[$i]";	
    			exit;
    		}
    	}
    }
     
     
    /*
     check and encode attach file(s) . internal use only
     @access private
    */
     
    function _build_attachement()
    {
     
    	$this->xheaders["Content-Type"] = "multipart/mixed;\n boundary=\"$this->boundary\"";
     
    	$this->fullBody = "This is a multi-part message in MIME format.\n--$this->boundary\n";
    	$this->fullBody .= "Content-Type: text/plain; charset=$this->charset\nContent-Transfer-Encoding: $this->ctencoding\n\n" . $this->body ."\n";
     
    	$sep= chr(13) . chr(10);
     
    	$ata= array();
    	$k=0;
     
    	// for each attached file, do...
    	for( $i=0; $i < count( $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' );
    		$ata[$k++] = chunk_split(base64_encode(fread( $fp, $linesz)));
    		fclose($fp);
    	}
    	$this->fullBody .= implode($sep, $ata);
    }
     
     
    } // class Mail

  5. #5
    Membre actif
    Profil pro
    Ingénieur
    Inscrit en
    Mars 2007
    Messages
    199
    Détails du profil
    Informations personnelles :
    Localisation : France, Seine Saint Denis (Île de France)

    Informations professionnelles :
    Activité : Ingénieur

    Informations forums :
    Inscription : Mars 2007
    Messages : 199
    Points : 291
    Points
    291
    Par défaut
    Tu peux aussi utiliser http://phpmailer.sourceforge.net/
    Un des avantages c'est qu'il ne s'appuie pas que sur la fonction mail de php.

  6. #6
    Membre du Club
    Profil pro
    Inscrit en
    Février 2007
    Messages
    219
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Février 2007
    Messages : 219
    Points : 61
    Points
    61
    Par défaut
    Ok merci je vais voir ça. Mais donc avec un while ça devrait marcher??

  7. #7
    Membre actif
    Profil pro
    Ingénieur
    Inscrit en
    Mars 2007
    Messages
    199
    Détails du profil
    Informations personnelles :
    Localisation : France, Seine Saint Denis (Île de France)

    Informations professionnelles :
    Activité : Ingénieur

    Informations forums :
    Inscription : Mars 2007
    Messages : 199
    Points : 291
    Points
    291
    Par défaut
    Je n'y vois pas de contre indication, mais c'est moins bien, à mon avis.

  8. #8
    Membre du Club
    Profil pro
    Inscrit en
    Février 2007
    Messages
    219
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Février 2007
    Messages : 219
    Points : 61
    Points
    61
    Par défaut
    Moins bien que quoi? car je vois pas trop comment récuperer mes adresses qui sont dans ma base sans faire une boucle?

  9. #9
    Membre éclairé Avatar de Korko Fain
    Profil pro
    Étudiant
    Inscrit en
    Août 2005
    Messages
    632
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Août 2005
    Messages : 632
    Points : 718
    Points
    718
    Par défaut
    remplace le while dans ton code par celui la :
    Code php : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    $m->Priority(4) ; // Priorité Basse
    $m->Attach($_FILES['fichier']['tmp_name'], "application/pdf" ) ; // définition du type mime du document joint image/gif
    while($rs=mysql_fetch_array($result)) {
    $m->To( $rs);
    }
    $m->Send();
    if($m)
         {
              echo 'Le message a bien été envoyé';
          }
         else
         {
              echo 'Le message n\'a pu être envoyé';
         }

  10. #10
    Membre du Club
    Profil pro
    Inscrit en
    Février 2007
    Messages
    219
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Février 2007
    Messages : 219
    Points : 61
    Points
    61
    Par défaut
    Cest bon j'y suis arrivé j'ai utiliser phpmailer et j'ai réussi à faire ce que je voulais. Merci quand même pour tout.

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

Discussions similaires

  1. Envoi de mails à plusieurs destinataires ?
    Par rimas2009 dans le forum Entrée/Sortie
    Réponses: 2
    Dernier message: 26/05/2010, 17h52
  2. Problème d'envoi de mails à plusieurs destinataires
    Par patessama dans le forum Exchange Server
    Réponses: 0
    Dernier message: 08/04/2009, 19h49
  3. envoi mail à plusieurs destinataires
    Par ph_anrys dans le forum Langage
    Réponses: 1
    Dernier message: 17/03/2009, 22h40
  4. Envoi de mail à plusieurs destinataires
    Par etuensam dans le forum Balisage (X)HTML et validation W3C
    Réponses: 2
    Dernier message: 18/06/2007, 09h17
  5. [Mail] envoie mail à plusieurs destinataires
    Par coco38 dans le forum Langage
    Réponses: 8
    Dernier message: 18/04/2007, 11h57

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