Précédent   Forum des professionnels en informatique > PHP > Langage > Fichiers
Fichiers Forum d'entraide sur les fichiers avec PHP. Avant de poster -> FAQ fichiers et Sources fichiers
Partagez cette discussion sur d'autres réseaux sociaux : Viadeo Twitter Google Facebook Digg Delicious MySpace Yahoo
Réponse Proposer ce sujet en actualité
 
Outils de la discussion
Publicité
'
Vieux 25/02/2011, 14h48   #1
Futur Membre du Club
 
Inscription : octobre 2007
Messages : 63
Détails du profil
Informations forums :
Inscription : octobre 2007
Messages : 63
Points : 15
Points : 15
Par défaut mail+piece jointe : marche en local mais pas en ligne

Bonjour à tous,

Voilà j'ai un petit souci. J'ai un formulaire dans lequel l'utilisateur envoi un message et un fichier sur une adresse mail.

Le problème se pose au niveau du client de messagerie (je suis sur thunderbird et j'ai aussi essayé sur windows mail) car le mail est bon sur le serveur de l'hébergeur :
Tout marche bien quand je fait tourne en local (wamp), je reçois bien le message et la pièce jointe mais en ligne ça foire (je suis chez magic).
Je ne reçois qu'un message contenant une pièce jointe nommée "partie 1.2" et dans le message la chaine de caractère de mon fichier encodé (en plus du message posté par l'utilisateur).

mon formulaire:
Code :
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
<div id="recruitPopup">
        <fieldset id="recruitment_form" class="info_fieldset">
            <form method="POST" name="recruitForm" enctype="multipart/form-data" action="index.php?page=recruitment_trt">           								            <table>
            	<tr>    
            		<td><label>Poste</label></td>
                	<td><INPUT class="textbox" type="text" name="poste" value="" /></td>
         		<tr>
                	<td><label>E-Mail</label>
                    <td><INPUT class="textbox" type="text" name="email" value="" onKeyUp="javascript:couleur(this);" /></td>
                </tr>
                <tr>
         			<td><label>CV</label></td>
                    <td><input type="hidden" name="MAX_FILE_SIZE" value="2000000">
                    	<input name="NomFichier" type="file" size="16"></td>
                </tr>
                <tr>
                	<td colspan="2"><label>Message</label></td>
                </tr>
                <tr>
                	<td colspan="2"><textarea class="textbox" NAME="msg" id="message_recruit" rows="5" COLS="25"></textarea></td>
                </tr>
             	<tr>
        		<td><input class="cfrm" name="host" type="text" value="" /></td>
                </tr>
                <tr>
                	<td colspan="2"><label>&nbsp;</label><input class="button" type="submit" name="envoi" id="submit_recruit" value="Envoyer"></td>
                </tr>
            </table>
    		</form>
        </fieldset>
</div>
traitement du formulaire (recruitment_trt.php)
Code :
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
 
<?php
 
$post = (!empty($_POST)) ? true : false;
 
if($post)
{
 
		$destinataire = "toto@toto.com";
		$expediteur   = $_POST['email'];
		$reponse      = $expediteur;
		$message	  = $_POST['msg'];
		$poste	  = $_POST['poste'];
		$error 	  = '';
		//----------------------------------
		// Construction de l'entete
		//----------------------------------
		$boundary = "-----=".md5(uniqid(rand()));
 
		// Version du format MIME utilisé
		$header = "MIME-Version: 1.0\r\n";
		$header .= "Content-Type: multipart/mixed; boundary=\"$boundary\"\r\n";
		$header .= "\r\n";
 
 
		// Pour le cas, ou le logiciel de mail du destinataire
		// n'est pas capable de lire le format MIME de cette version
		// Il est de bon ton de l'en informer
		// REM: Ce message n'apparait pas pour les logiciels sachant lire ce format
		$msg = "Ceci est un message au format MIME 1.0 multipart/mixed.\r\n";
 
		//---------------------------------
		// 1ère partie du message
		// Le texte
		//---------------------------------
		$msg .= "--$boundary\r\n";
		$msg .= "Content-Type: text/plain; charset=\"iso-8859-1\"\r\n";
		$msg .= "Content-Transfer-Encoding:8bit\r\n";
		$msg .= "\r\n";
		$msg .= $message;
		$msg .= "\r\n";
 
		//---------------------------------
		// 2eme partie du message
		// Pièce jointe
		//---------------------------------
		$file_name = $_FILES['NomFichier']['name'];
		$uploaddir = 'upload/';
		$uploadfile = $uploaddir.basename($file_name);
		if ($file_name!="")
		{
			if(filesize($_FILES['NomFichier']['tmp_name'])<2000000)
			{
				if (move_uploaded_file($_FILES["NomFichier"]["tmp_name"], $uploadfile))
				{
					$fp = fopen($uploadfile, "rb");
					$attachment = fread($fp, filesize($uploadfile));
					fclose($fp);
 
					$attachment = chunk_split(base64_encode($attachment));
 
					$msg .= "--$boundary\r\n";
					$msg .= "Content-Type: application/word; name=\"$file_name\"\r\n";
					$msg .= "Content-Transfer-Encoding: base64\r\n";
					$msg .= "Content-Disposition: inline; filename=\"$file_name\"\r\n";
					$msg .= "\r\n";
					$msg .= $attachment . "\r\n";
					$msg .= "\r\n\r\n";
					$msg .= "--$boundary--\r\n";
				}
				else
				{
					$error .= 'Erreur lors de l\'envoi !';
				}
			}
			else
			{
				$error .= 'Fichier trop gros (ne dois pas dépasser 2 Mo) !';
			}
		}
		if(!$error)
	{
		$mail= mail($destinataire, "Candidature pour le poste de : ".$poste, $msg,
			 "Reply-to: $reponse\r\nFrom: $expediteur\r\n".$header);
 
		if($mail)
		{
			echo '<div id="notification_ok_r">Le message a été envoyé avec succès<div id="redirect">Redirection...</div></div>';
			header('Refresh: 4;url=index.php?page=recruitment');
			if ($file_name!="") {
			unlink("upload/".$file_name);
 
			}
		}
 
	}
	else
	{
		echo '<div id="notification_error_r">'.$error.'<div id="redirect">Redirection...</div></div>';
		header('Refresh: 4;url=index.php?page=recruitment');
		if ($file_name!="") {
			unlink("upload/".$file_name);
		}
	}
}
 
?>
Quelqu'un aurait une idée d'où est-ce que ça pourrait venir ?
oOBaalberithOo est déconnecté   Envoyer un message privé Réponse avec citation 00
Vieux 28/02/2011, 19h00   #2
Membre Expert
 
Inscription : septembre 2010
Messages : 1 239
Détails du profil
Informations forums :
Inscription : septembre 2010
Messages : 1 239
Points : 1 561
Points : 1 561
Il est mal construit ton message.
Pourquoi avant l'envoi du fichier tu envoies
Code :
Content-Type: application/word; name=\"$file_name\"\r\n";
Regarde cet exemple.

pour ton cas cela devrait donner
Code :
$attachment = chunk_split(base64_encode(file_get_contents($_FILES["NomFichier"]["tmp_name"])));
(pas besoin de passer par fopen, fread, fclose avec php5)
__________________
- Réalisations
- Interface graphique : génération en javascript d'objets défilants, texte et/ou images, mode horizontal ou vertical.
ABCIWEB est déconnecté   Envoyer un message privé Réponse avec citation 00
Vieux 01/03/2011, 15h58   #3
Futur Membre du Club
 
Inscription : octobre 2007
Messages : 63
Détails du profil
Informations forums :
Inscription : octobre 2007
Messages : 63
Points : 15
Points : 15
Au final entre temps j'ai tout repris en utilisant une classe que j'ai trouvé sur le web et ça marche parfaitement.

Ceci dit je te remercie de ton intervention car elle m'a tout de même permis de voir le souci et de corriger le code que j'utilise maintenant en virant les fopen, fread, fclose.

Et merci pour le lien je ne connaissais pas et il est bien clair et détaillé.

Voici le code que j'utilise maintenant et qui marche si ça peut aider quelqu'un par la suite :
Code :
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
 
<?php
if (!isset($_FILES['NomFichier'])){
	$reponse=stripslashes("<div id='notification_error_r'>Erreur lors de l'envoi du fichier. Vérifiez qu'il fait bien moins de 2 Mo</div>");}
else{
 /* PARAMETRAGE DU SCRIPT */
 /* ENTREZ VOTRE ADRESSE EMAIL ENTRE LES GUILLEMETS*/
 
 $dest="toto@toto.com";
 $subject=$_POST['subject'];
 $email=$_POST['email'];
 $msg=$_POST['msg'];
 $NomFichier=$_FILES["NomFichier"]["tmp_name"];
 $NomFichier_name=$_FILES['NomFichier']['name'];
 $TypeFichier=$_FILES["NomFichier"]["type"];
 $reponse=stripslashes("<div id='notification_ok_r'>Le message a été envoyé avec succès</div>");
 
 /* FIN DU PARAMETRAGE */
 
 
 /*
 
 
 Le script utilise une version de la classe Mail() développée par Leo West (lwest.free.fr)
 
 
 
 DESCRIPTION
 
 this class encapsulates the PHP mail() function.
 implements CC, Bcc, Priority headers
 */
 
if( ((!$TypeFichier== "application/msword")||(!$TypeFichier== "application/pdf")) ){
	 $reponse=stripslashes("<div id='notification_error_r'>Veuillez joindre un fichier de type pdf ou word</div>");}
else{
 class Mail
 {
 
 var $sendto= array();
 var $from, $msubject;
 var $acc= array();
 var $abcc= array();
 var $aattach= array();
 
 
 // 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( "Candidature pour le poste de : ".$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: error, From is not a string";
 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;
 }
 
 
 /* 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 principal
 for( $i=0; $i< sizeof($this->sendto); $i++ ) {
 $res = mail($this->sendto[$i], $this->msubject,$body, $this->headers);
 // TODO : trmt res
 }
 
 }
 
 
 
 /* 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;
 }
 
 
 /********************** 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";
 }*/
}
 
 
 /*
 * _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
 $data= base64_encode($filename);
 $ata[$k++] = chunk_split( $data );
 }
 $this->attachment= implode($sep, $ata);
 }
 
 
 } // class Mail
	 $subject=stripslashes($subject);
	 $msg=stripslashes($msg);
	 $msg="Message depuis votre site web:
	 $msg";
	 $m= new Mail; // create the mail
	 $m->From( "$email" );
	 $m->To( "$dest");
	 $m->Subject( "$subject" );
	 $m->Body( $msg); // set the body
	 /*if ($email1!="") {
	 $m->Cc( "$email1");
	 }*/
	 if ("$NomFichier"!="") {
		if (is_uploaded_file($NomFichier)) {
		  copy($NomFichier, "upload/$NomFichier_name");
		}
 
		$m->Attach( "upload/$NomFichier_name", "application/octet-stream" );
	}
	$m->Send();
 
if ("$NomFichier"!="") {
    unlink("upload/$NomFichier_name");
}}}
echo "$reponse";
 
 ?>
oOBaalberithOo est déconnecté   Envoyer un message privé Réponse avec citation 00
Réponse Proposer ce sujet en actualité Cette discussion est résolue.
Outils de la discussion



Fuseau horaire GMT +2. Il est actuellement 17h01.


 
 
 
 
Partenaires

Hébergement Web