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 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488
| <?php
/**
* Gère l'envoie et la réception d'email via la fonction mail
* Code skeleton generated by dia-uml2php5 plugin
* written by Ewil79
*/
class Mail {
/**
*
Le ou les destinataires du mail.
Le formatage de cette chaîne doit correspondre avec la » RFC 2822. Voici quelques exemples :
destinataire@example.com
destinataire@example.com, autre_destinataire@example.com
Destinataire <destinataire@example.com>
Destinataire <destinataire@example.com>, Autre destinataire <autre_destinataire@example.com>
* @var string
* @access protected
*/
protected $to;
/**
* Sujet du mail à envoyer.
* @var string
* @access protected
*/
protected $subject;
/**
* Message à envoyer.
Chaque ligne doit être séparée par un caractère CRLF (\r\n). Les lignes ne doivent pas comporter plus de 70 caractères.
* @var string
* @access protected
*/
protected $message;
/**
Passage à la ligne \r\n ou \n selon serveur
Chaque ligne doit être séparée par un caractère CRLF (\r\n). Les lignes ne doivent pas comporter plus de 70 caractères.
* @var string
* @access protected
*/
protected $passageLigne;
/**
La frontière entre les différentes parties de l'email
* @var string
* @access protected
*/
protected $boundary;
/**
* Deuxième boundary pour les changement de content-type (pièce jointe)
* @var string
* @access protected
*/
protected $boundaryAlt;
/**
* Chaîne à insérer à la fin des en-têtes du mail.
Ce paramètre est typiquement utilisé pour ajouter des en-têtes supplémentaires (From, Cc et Bcc). Les en-têtes supplémentaires doivent être séparés par un caractère CRLF (\r\n). Si des données externes sont utilisées pour composer cet en-tête, elles doivent être d'abord nettoyées afin de ne pas injecter des données non désirées dans les en-têtes.
* @var string
* @access protected
*/
protected $headers='';
/**
* @access public
* @param string $to
* @param string $subject
* @param string $message
* @return void
*/
public function __construct($to, $subject) {
$this->setTo($to);
$this->setSubject($subject);
//Génération dez boundary
$this->boundary = '-----='.md5(rand());
$this->boundaryAlt = '-----='.md5(rand());
}
// SETTERS
/**
* @access public
* @param string $to
* @return string
*/
public function setTo($to) {
if (!is_string($to) || empty($to))
{
throw new Exception('Le destinataire doit etre une chaine de caractère');
}
else
{
$this->to = $to; // configure la gestion des passages à la ligne
if (!preg_match('#^[a-z0-9._-]+@(hotmail|live|msn).[a-z]{2,4}$#', $to))
{
$this->passageLigne = "\r\n";
}
else
{
$this->passageLigne = "\n";
}
}
}
/**
* @access public
* @param string $subject
* @return string
*/
public function setSubject($subject) {
if (!is_string($subject) || empty($subject))
{
throw new Exception('Le sujet doit etre une chaine de caractère');
}
else
{
$this->subject = $subject;
}
}
/**
* @access public
* @param string $message
* @return string
*/
public function setMessage($message) {
if (!is_string($message))
{
throw new Exception('Le message doit etre une chaine de caractère');
}
else
{
$this->message .= $message;
}
}
/**
* @access public
* @param string $from
* @return string
*/
public function setFrom($from) {
if (!is_string($from) || empty($from))
{
throw new Exception('L\'expediteur doit etre une chaine de caractère');
}
else
{
$this->headers .= 'From: '.$from.$this->passageLigne;
}
}
/**
* @access public
* @param string $replyTo
* @return string
*/
public function setReplyTo($replyTo) {
if (!is_string($replyTo) || empty($replyTo))
{
throw new Exception('L\'adresse de réponse doit etre une chaine de caractère');
}
else
{
$this->headers .= 'Reply-To: '.$replyTo.$this->passageLigne;
}
}
/**
* @access public
* @param int $priority 1=urgent
2=moins urgent
3=normal
* @return string
*/
public function setPriority($priority = 3) {
$priority = (int) $priority;
if (!is_int($priority) || empty($priority))
{
throw new Exception('La priorité doit etre de type numeric');
}
else
{
$this->headers .= 'X-Priority: '.$priority.$this->passageLigne;
}
}
/**
* Ajout d'en tête spécifique au message text
* @access public
* @return string
*/
public function msgTxt($msg) {
$this->headers.='Content-type:text/plain;charset=utf-8'.$this->passageLigne;
$this->headers.='Content-transfer-encoding:8bit'.$this->passageLigne;
$this->setMessage($msg);
}
/**
* Ajout d'en tête spécifique au message HTML
* @access public
* @return string
*/
public function msgHTML($msg='',$body='') {
$this->headers .= 'Mime-Version: 1.0'.$this->passageLigne;
$this->headers .= 'Content-type: text/html; charset=utf-8'.$this->passageLigne;
$this->headers .= 'Content-Transfer-Encoding: 8bit'.$this->passageLigne;
if($msg!='')
{
$this->setMessage($msg);
}
if(!$body == '')
{
$this->setBody($body);
}
}
/**
* Ajout du corps du message, le chemin vers un page template HTML contenant le message.
* @access static
* @param string $body
* @return string
*/
public function setBody($body) {
if(is_string($body) && file_exists($body))
{
$this->setMessage(file_get_contents($body));
}
else
{
throw new Exception('Le fichier HTML est introuvable ou non valide');//---------------------------------------------------------
}
}
/**
* Retourne le type mime en fonction de l'extension du fichier
* @access static
* @param string $extension
* @return string
*/
static function mime_type($extension) {
$mime_types = array(
'txt' => 'text/plain',
'htm' => 'text/html',
'html' => 'text/html',
'php' => 'text/html',
'css' => 'text/css',
'js' => 'application/javascript',
'json' => 'application/json',
'xml' => 'application/xml',
'swf' => 'application/x-shockwave-flash',
'flv' => 'video/x-flv',
// images
'png' => 'image/png',
'jpe' => 'image/jpeg',
'jpeg' => 'image/jpeg',
'jpg' => 'image/jpeg',
'gif' => 'image/gif',
'bmp' => 'image/bmp',
'ico' => 'image/vnd.microsoft.icon',
'tiff' => 'image/tiff',
'tif' => 'image/tiff',
'svg' => 'image/svg+xml',
'svgz' => 'image/svg+xml',
// archives
'zip' => 'application/zip',
'rar' => 'application/x-rar-compressed',
'exe' => 'application/x-msdownload',
'msi' => 'application/x-msdownload',
'cab' => 'application/vnd.ms-cab-compressed',
// audio/video
'mp3' => 'audio/mpeg',
'qt' => 'video/quicktime',
'mov' => 'video/quicktime',
// adobe
'pdf' => 'application/pdf',
'psd' => 'image/vnd.adobe.photoshop',
'ai' => 'application/postscript',
'eps' => 'application/postscript',
'ps' => 'application/postscript',
// ms office
'doc' => 'application/msword',
'rtf' => 'application/rtf',
'xls' => 'application/vnd.ms-excel',
'ppt' => 'application/vnd.ms-powerpoint',
// open office
'odt' => 'application/vnd.oasis.opendocument.text',
'ods' => 'application/vnd.oasis.opendocument.spreadsheet',
);
$ext = strtolower($extension);
if (array_key_exists($ext, $mime_types)) {
return $mime_types[$ext];
}
else {
return 'application/octet-stream';
}
}
/**
* Pour l'envoie de message avec Piece Jointe
* @access public
* @return string
*/
public function msgPJ($msgTxt, $pj=array(), $body='') {
//headers
$this->headers .= 'MIME-Version: 1.0'.$this->passageLigne;
$this->headers .= 'Content-Type: multipart/mixed;'.$this->passageLigne; //Multipart
$this->headers .= 'boundary="'.$this->boundary.'"'.$this->passageLigne; //declaration boundary
//TEXTE
$this->setMessage($this->passageLigne.'--'.$this->boundary.''.$this->passageLigne);// Ouverture boundary
$this->setMessage('Content-Type: multipart/alternative;'.$this->passageLigne.' boundary="'.$this->boundaryAlt.'"'.$this->passageLigne); //Declaration content-type et seconde boundary
$this->setMessage($this->passageLigne.'--'.$this->boundaryAlt.$this->passageLigne); //Ouverture boundary2
$this->setMessage('Content-type:text/plain;charset=utf-8'.$this->passageLigne);
$this->setMessage('Content-Transfer-Encoding: 8bit'.$this->passageLigne);
$this->setMessage($msgTxt.$this->passageLigne);
$this->setMessage($this->passageLigne.'--'.$this->boundaryAlt.$this->passageLigne);
$this->setMessage('Content-type: text/html; charset=utf-8'.$this->passageLigne);
$this->setMessage ('Content-Transfer-Encoding: 8bit'.$this->passageLigne);
if(!$body == '') //Page HTML
{
$this->setBody($body);
}
else{
$this->setMessage('<p>'.$msgTxt.'</p>');
}
$this->setMessage($this->passageLigne.'--'.$this->boundaryAlt.'--'.$this->passageLigne); //Fermeture boundaryAlt
// Pièces jointes
foreach($pj as $filename)
{
strtolower($filename);
if (file_exists($filename))//--------------------------------------
{
$extension = pathinfo($filename,PATHINFO_EXTENSION);
$fichier = fopen($filename,'r');
$attachement = fread($fichier, filesize($filename));
$attachement = chunk_split(base64_encode($attachement));
fclose($fichier);
// en têtes spécifiques
$this->setMessage($this->passageLigne.'--'.$this->boundary.$this->passageLigne); // on ouvre une boundary
$this->setMessage ('Content-type: '.self::mime_type($extension).';'); //Récupération du type mime gràce à la fonction eponyme
$this->setMessage ('name="'.$filename.'"'.$this->passageLigne);
$this->setMessage ('Content-Transfer-Encoding:base64'.$this->passageLigne);
$this->setMessage ('Content-Disposition: attachment; filename="'.$filename.'"'.$this->passageLigne);
$this->setMessage ($this->passageLigne.$attachement.$this->passageLigne); // la pièce jointe encodée
}
else
{
throw new Exception('Le fichier '.$filename.' n\'existe pas.');
}
}
$this->setMessage($this->passageLigne.'--'.$this->boundary.'--'.$this->passageLigne);
}
/**
* @access public
* @return bool
*/
public function send() {
print_r($this->message);
if(mail($this->to,$this->subject,$this->message,$this->headers))
{
return true;
}
else
{
return false;
}
}
}
$mail = new Mail('monmail@hotmail.fr','Mail HTML');
$mail->setFrom('"WeaponsB"<weaponsb@mail.fr>');
$mail->setReplyTo('"WeaponsB"<weaponsb@mail.fr>');
//$mail->msgHTML('','tempMail.html');
$mail->msgPJ('Message format texte',array('image.jpg'));
if($mail->send())
{
echo 'ok';
} |
Partager