Bonjour à tous,

je souhaite créer un script qui permet de récupérer une image existante, de modifier l'image grâce à la librairie GD et d'envoyer l'image modifiée par mail en pièce jointe.

Le problème c'est que je n'arrive pas à recevoir l'image modifiée en pièce jointe.


Voilà le code en question:

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
<?php
 
header ("Content-type: image/png");
//je récupére l'image sur laquelle je veux mettre du texte
		$nom_image = "images/mon_image.jpg";  
//le texte que je veux mettre		
		$texte = "test texte";  
 
$image = imagecreatefromjpeg($nom_image);
$noir = imagecolorallocate($image, 0, 0, 0);
imagestring($image, 5, 150, 150,$texte, $noir);
 
//envoi du mail
 
 
//define the receiver of the email 
$to = 'destinataire@blabla.com'; 
//define the subject of the email 
$subject = 'test envoi'; 
//create a boundary string. It must be unique 
//so we use the MD5 algorithm to generate a random hash 
$random_hash = md5(date('r', time())); 
//define the headers we want passed. Note that they are separated with \r\n 
$headers = "From: expediteur@blabla.fr\r\nReply-To: expediteur@blabla.fr"; 
//add boundary string and mime type specification 
$headers .= "\r\nContent-Type: multipart/mixed; boundary=\"PHP-mixed-".$random_hash."\""; 
//read the atachment file contents into a string,
//encode it with MIME base64,
//and split it into smaller chunks
$attachment = chunk_split(base64_encode(file_get_contents($nom_image))); 
//define the body of the message. 
ob_start(); //Turn on output buffering 
?> 
--PHP-mixed-<?php echo $random_hash; ?>  
Content-Type: multipart/alternative; boundary="PHP-alt-<?php echo $random_hash; ?>" 
 
--PHP-alt-<?php echo $random_hash; ?>  
Content-Type: text/plain; charset="iso-8859-1" 
Content-Transfer-Encoding: 7bit
 
Hello World!!! 
This is simple text email message. 
 
--PHP-alt-<?php echo $random_hash; ?>  
Content-Type: text/html; charset= UTF-8" 
Content-Transfer-Encoding: 7bit
 
 
<?php
 
 
 
echo "Bonjour";
?>
 
--PHP-alt-<?php echo $random_hash; ?>-- 
 
--PHP-mixed-<?php echo $random_hash; ?>  
Content-Type: image/jpeg; name="mon_image.jpg"  
Content-Transfer-Encoding: base64  
Content-Disposition: attachment  
 
<?php echo $attachment; ?> 
--PHP-mixed-<?php echo $random_hash; ?>-- 
 
<?php 
//copy current buffer contents into $message variable and delete current output buffer 
$message = ob_get_clean(); 
//send the email 
$mail_sent = @mail( $to, $subject, $message, $headers ); 
//if the message is sent successfully print "Mail sent". Otherwise print "Mail failed" 
 
 
?>
Merci d'avance pour la réponse.