Accueil > > > FONCTION ENVOI DE MAIL PHP QUI PERMET DE PASSER LE FILTRE ANTI SPAM
FONCTION ENVOI DE MAIL PHP QUI PERMET DE PASSER LE FILTRE ANTI SPAM
Information sur la source
Description
Tout est dans le titre :) C'est une fonction qui vous permettra de passer outre les filtres antispam des hébergeurs de messagerie tels que Hotmail Yahoo ou Gmail.
Source
- <?php
- date_default_timezone_set("Europe/Paris");
- function envoyermail($mail, $emailsubject, $contenu, $fromname, $frommail, $organisation, $textorhtml, $timezone) {
- error_reporting(0);
- if (strtoupper(substr(PHP_OS,0,3)=='WIN')) { $eol="\r\n"; }
- elseif (strtoupper(substr(PHP_OS,0,3)=='MAC')) { $eol="\r"; }
- else { $eol="\n"; }
-
- $headers = 'Reply-To: '.$fromname.' <'.$frommail.'>'.$eol;
- $headers .= 'Return-Path: '.$fromname.' <'.$frommail.'>'.$eol;
- $headers .= 'From: '.$fromname.' <'.$frommail.'>'.$eol;
- $headers .= 'Organization: '.$organisation.$eol;
- if($textorhtml=="0") { $headers .= 'Content-Type: text/plain'.$eol; }
- else { $headers .= "Content-Type: text/html; charset=iso-8859-1".$eol; }
- $headers .= "X-Priority: normal".$eol;
- $headers .= "X-MSMail-Priority: Normal".$eol;
- $headers .= "Importance: High".$eol;
- $headers .= "X-Mailer: PHP v" . phpversion().$eol;
- $headers .= "MIME-Version: 1.0".$eol;
- $headers .= "Delivery-date: ".date("D, j M Y H:i:s ".$timezone).$eol;
- $headers .= "X-Originating-IP: [".getenv("REMOTE_ADDR")."]".$eol;
- $headers .= "X-Sender-IP: " . $_SERVER["REMOTE_ADDR"].$eol;
- $headers .= "Content-Transfer-Encoding: 8bit".$eol;
- $headers .= 'Sender: '.$frommail.$eol;
-
- ob_start();
- echo stripslashes($contenu);
- $body=ob_get_contents(); ob_end_clean();
-
- ini_set(sendmail_from,$frommail);
- mail($mail, $emailsubject, $body, $headers);
- ini_restore(sendmail_from);
- error_reporting(-1);
- }
- envoyermail("mail@destinataire.tld", "SUJET DU MAIL", "<h3>CONTENU HTML DE L'EMAIL</h3>", "NOM EXPEDITEUR", "mail@expediteur.tld", "Organisation", "1", "+0100");
- ?>
-
-
-
-
- VOICI UN EXEMPLE PRATIQUE :
-
- <?php
- date_default_timezone_set("Europe/Paris");
- function envoyermail($mail, $emailsubject, $contenu, $fromname, $frommail, $organisation, $textorhtml, $timezone) {
- error_reporting(0);
- if (strtoupper(substr(PHP_OS,0,3)=='WIN')) { $eol="\r\n"; }
- elseif (strtoupper(substr(PHP_OS,0,3)=='MAC')) { $eol="\r"; }
- else { $eol="\n"; }
- $headers = 'Reply-To: '.stripslashes($fromname).' <'.$frommail.'>'.$eol;
- $headers .= 'Return-Path: '.stripslashes($fromname).' <'.$frommail.'>'.$eol;
- $headers .= 'From: '.stripslashes($fromname).' <'.$frommail.'>'.$eol;
- $headers .= 'Organization: '.$organisation.$eol;
- if($textorhtml=="0") { $headers .= 'Content-Type: text/plain'.$eol; }
- else { $headers .= "Content-Type: text/html; charset=iso-8859-1".$eol; }
- $headers .= "X-Priority: normal".$eol;
- $headers .= "X-MSMail-Priority: Normal".$eol;
- $headers .= "Importance: High".$eol;
- $headers .= "X-Mailer: PHP v" . phpversion().$eol;
- $headers .= "MIME-Version: 1.0".$eol;
- $headers .= "Delivery-date: ".date("D, j M Y H:i:s ".$timezone).$eol;
- $headers .= "X-Originating-IP: [".getenv("REMOTE_ADDR")."]".$eol;
- $headers .= "X-Sender-IP: " . $_SERVER["REMOTE_ADDR"].$eol;
- $headers .= "Content-Transfer-Encoding: 8bit".$eol;
- $headers .= 'Sender: '.$frommail.$eol;
- ob_start();
- echo stripslashes($contenu);
- $body=ob_get_contents(); ob_end_clean();
- ini_set('sendmail_from',$frommail);
- mail($mail, stripslashes($emailsubject), $body, $headers);
- ini_restore('sendmail_from');
- error_reporting(-1);
- }
- $err=''; $succ="";
- if(isset($_POST['envoyer'])) {
- $mailto=trim($_POST['mail']);
- $verif=$mailto; $t1=explode("@",$verif); $t2=explode(".",$t1[1]); $t3=explode(" ",$verif); $t5=explode(".@",$verif); $t6=explode("@.",$verif);
- if((sizeof ($t1) == 2) && (sizeof ($t2) > 1) && (sizeof ($t3) == 1) && (sizeof ($t5) == 1) && (sizeof ($t6) == 1)){
- $subject=addslashes(trim($_POST['sujet']));
- $contenu=addslashes($_POST['message']);
- $nomprenom=addslashes(strtoupper(trim($_POST['nom'])).' '.ucwords(strtolower(trim($_POST['prenom']))));
- envoyermail("MON_MAIL@POUR_LA_RECEPTION.FR", $subject, $contenu, $nomprenom, $mailto, "MA SOCIETE", "1", "+0100");
- $succ="Envoi réussi !";
- }
- else { $err='Le format de l\'E-Mail saisie est incorrect'; }
- }
- ?>
-
-
- <form action="" method="post">
- <?php if($err) { ?><font color="red"><?php echo $err; ?></font><?php } ?>
- <?php if($succ) { ?><font color="green"><?php echo $succ; ?></font><?php } ?>
- <table cellpadding="0" cellspacing="0" border="0">
- <tr><td>Nom</td><td><input type="text" name="nom" /></td></tr>
- <tr><td>PrÉnom</td><td><input type="text" name="prenom" /></td></tr>
- <tr><td>E-Mail</td><td><input type="text" name="mail" /></td></tr>
- <tr><td>Sujet</td><td><input type="text" name="sujet" /></td></tr>
- <tr><td valign="top">Message</td><td><textarea name="message"></textarea></td></tr>
- <tr><td colspan="2" align="center"><input type="submit" name="envoyer" value="Valider" /></td></tr>
- </table>
- </form>
-
-
-
- Exemple MASS MAILER :
-
- <?php
- date_default_timezone_set("Europe/Paris");
- function envoyermail($mail, $emailsubject, $contenu, $fromname, $frommail, $organisation, $textorhtml, $timezone) {
- error_reporting(0);
- if (strtoupper(substr(PHP_OS,0,3)=='WIN')) { $eol="\r\n"; }
- elseif (strtoupper(substr(PHP_OS,0,3)=='MAC')) { $eol="\r"; }
- else { $eol="\n"; }
- $headers = 'Reply-To: '.stripslashes($fromname).' <'.$frommail.'>'.$eol;
- $headers .= 'Return-Path: '.stripslashes($fromname).' <'.$frommail.'>'.$eol;
- $headers .= 'From: '.stripslashes($fromname).' <'.$frommail.'>'.$eol;
- $headers .= 'Organization: '.$organisation.$eol;
- if($textorhtml=="0") { $headers .= 'Content-Type: text/plain'.$eol; }
- else { $headers .= "Content-Type: text/html; charset=iso-8859-1".$eol; }
- $headers .= "X-Priority: normal".$eol;
- $headers .= "X-MSMail-Priority: Normal".$eol;
- $headers .= "Importance: High".$eol;
- $headers .= "X-Mailer: PHP v" . phpversion().$eol;
- $headers .= "MIME-Version: 1.0".$eol;
- $headers .= "Delivery-date: ".date("D, j M Y H:i:s ".$timezone).$eol;
- $headers .= "X-Originating-IP: [".getenv("REMOTE_ADDR")."]".$eol;
- $headers .= "X-Sender-IP: " . $_SERVER["REMOTE_ADDR"].$eol;
- $headers .= "Content-Transfer-Encoding: 8bit".$eol;
- $headers .= 'Sender: '.$frommail.$eol;
- ob_start();
- echo stripslashes($contenu);
- $body=ob_get_contents(); ob_end_clean();
- ini_set('sendmail_from',$frommail);
-
- $emails=split("\n", $mail);
- for($i=0; $i<count($emails); $i++) {
- $verif=trim($emails[$i]); $t1=explode("@",$verif); $t2=explode(".",$t1[1]); $t3=explode(" ",$verif); $t5=explode(".@",$verif); $t6=explode("@.",$verif);
- if((sizeof ($t1) == 2) && (sizeof ($t2) > 1) && (sizeof ($t3) == 1) && (sizeof ($t5) == 1) && (sizeof ($t6) == 1)){
- mail(trim($emails[$i]), stripslashes($emailsubject), $body, $headers);
- echo "Envoyé à ".$emails[$i]."<br />";
- }
- }
- ini_restore('sendmail_from');
- error_reporting(-1);
- }
- $err=''; $succ="";
- if(isset($_POST['envoyer'])) {
- $mailto=trim($_POST['mail']);
- $subject=addslashes(trim($_POST['sujet']));
- $contenu=addslashes($_POST['message']);
- envoyermail($mailto, $subject, $contenu, "NOM PRENOM", "admin@mymail.com", "MA SOCIETE", "1", "+0100");
- $succ="Envoi réussi !";
- }
- ?>
-
-
- <form action="" method="post">
- <?php if($err) { ?><font color="red"><?php echo $err; ?></font><?php } ?>
- <?php if($succ) { ?><font color="green"><?php echo $succ; ?></font><?php } ?>
- <table cellpadding="0" cellspacing="0" border="0">
- <tr><td valign="top">E-Mails</td><td><textarea name="mail"></textarea></td></tr>
- <tr><td>Sujet</td><td><input type="text" name="sujet" /></td></tr>
- <tr><td valign="top">Message</td><td><textarea name="message"></textarea></td></tr>
- <tr><td colspan="2" align="center"><input type="submit" name="envoyer" value="Valider" /></td></tr>
- </table>
- </form>
<?php
date_default_timezone_set("Europe/Paris");
function envoyermail($mail, $emailsubject, $contenu, $fromname, $frommail, $organisation, $textorhtml, $timezone) {
error_reporting(0);
if (strtoupper(substr(PHP_OS,0,3)=='WIN')) { $eol="\r\n"; }
elseif (strtoupper(substr(PHP_OS,0,3)=='MAC')) { $eol="\r"; }
else { $eol="\n"; }
$headers = 'Reply-To: '.$fromname.' <'.$frommail.'>'.$eol;
$headers .= 'Return-Path: '.$fromname.' <'.$frommail.'>'.$eol;
$headers .= 'From: '.$fromname.' <'.$frommail.'>'.$eol;
$headers .= 'Organization: '.$organisation.$eol;
if($textorhtml=="0") { $headers .= 'Content-Type: text/plain'.$eol; }
else { $headers .= "Content-Type: text/html; charset=iso-8859-1".$eol; }
$headers .= "X-Priority: normal".$eol;
$headers .= "X-MSMail-Priority: Normal".$eol;
$headers .= "Importance: High".$eol;
$headers .= "X-Mailer: PHP v" . phpversion().$eol;
$headers .= "MIME-Version: 1.0".$eol;
$headers .= "Delivery-date: ".date("D, j M Y H:i:s ".$timezone).$eol;
$headers .= "X-Originating-IP: [".getenv("REMOTE_ADDR")."]".$eol;
$headers .= "X-Sender-IP: " . $_SERVER["REMOTE_ADDR"].$eol;
$headers .= "Content-Transfer-Encoding: 8bit".$eol;
$headers .= 'Sender: '.$frommail.$eol;
ob_start();
echo stripslashes($contenu);
$body=ob_get_contents(); ob_end_clean();
ini_set(sendmail_from,$frommail);
mail($mail, $emailsubject, $body, $headers);
ini_restore(sendmail_from);
error_reporting(-1);
}
envoyermail("mail@destinataire.tld", "SUJET DU MAIL", "<h3>CONTENU HTML DE L'EMAIL</h3>", "NOM EXPEDITEUR", "mail@expediteur.tld", "Organisation", "1", "+0100");
?>
VOICI UN EXEMPLE PRATIQUE :
<?php
date_default_timezone_set("Europe/Paris");
function envoyermail($mail, $emailsubject, $contenu, $fromname, $frommail, $organisation, $textorhtml, $timezone) {
error_reporting(0);
if (strtoupper(substr(PHP_OS,0,3)=='WIN')) { $eol="\r\n"; }
elseif (strtoupper(substr(PHP_OS,0,3)=='MAC')) { $eol="\r"; }
else { $eol="\n"; }
$headers = 'Reply-To: '.stripslashes($fromname).' <'.$frommail.'>'.$eol;
$headers .= 'Return-Path: '.stripslashes($fromname).' <'.$frommail.'>'.$eol;
$headers .= 'From: '.stripslashes($fromname).' <'.$frommail.'>'.$eol;
$headers .= 'Organization: '.$organisation.$eol;
if($textorhtml=="0") { $headers .= 'Content-Type: text/plain'.$eol; }
else { $headers .= "Content-Type: text/html; charset=iso-8859-1".$eol; }
$headers .= "X-Priority: normal".$eol;
$headers .= "X-MSMail-Priority: Normal".$eol;
$headers .= "Importance: High".$eol;
$headers .= "X-Mailer: PHP v" . phpversion().$eol;
$headers .= "MIME-Version: 1.0".$eol;
$headers .= "Delivery-date: ".date("D, j M Y H:i:s ".$timezone).$eol;
$headers .= "X-Originating-IP: [".getenv("REMOTE_ADDR")."]".$eol;
$headers .= "X-Sender-IP: " . $_SERVER["REMOTE_ADDR"].$eol;
$headers .= "Content-Transfer-Encoding: 8bit".$eol;
$headers .= 'Sender: '.$frommail.$eol;
ob_start();
echo stripslashes($contenu);
$body=ob_get_contents(); ob_end_clean();
ini_set('sendmail_from',$frommail);
mail($mail, stripslashes($emailsubject), $body, $headers);
ini_restore('sendmail_from');
error_reporting(-1);
}
$err=''; $succ="";
if(isset($_POST['envoyer'])) {
$mailto=trim($_POST['mail']);
$verif=$mailto; $t1=explode("@",$verif); $t2=explode(".",$t1[1]); $t3=explode(" ",$verif); $t5=explode(".@",$verif); $t6=explode("@.",$verif);
if((sizeof ($t1) == 2) && (sizeof ($t2) > 1) && (sizeof ($t3) == 1) && (sizeof ($t5) == 1) && (sizeof ($t6) == 1)){
$subject=addslashes(trim($_POST['sujet']));
$contenu=addslashes($_POST['message']);
$nomprenom=addslashes(strtoupper(trim($_POST['nom'])).' '.ucwords(strtolower(trim($_POST['prenom']))));
envoyermail("MON_MAIL@POUR_LA_RECEPTION.FR", $subject, $contenu, $nomprenom, $mailto, "MA SOCIETE", "1", "+0100");
$succ="Envoi réussi !";
}
else { $err='Le format de l\'E-Mail saisie est incorrect'; }
}
?>
<form action="" method="post">
<?php if($err) { ?><font color="red"><?php echo $err; ?></font><?php } ?>
<?php if($succ) { ?><font color="green"><?php echo $succ; ?></font><?php } ?>
<table cellpadding="0" cellspacing="0" border="0">
<tr><td>Nom</td><td><input type="text" name="nom" /></td></tr>
<tr><td>PrÉnom</td><td><input type="text" name="prenom" /></td></tr>
<tr><td>E-Mail</td><td><input type="text" name="mail" /></td></tr>
<tr><td>Sujet</td><td><input type="text" name="sujet" /></td></tr>
<tr><td valign="top">Message</td><td><textarea name="message"></textarea></td></tr>
<tr><td colspan="2" align="center"><input type="submit" name="envoyer" value="Valider" /></td></tr>
</table>
</form>
Exemple MASS MAILER :
<?php
date_default_timezone_set("Europe/Paris");
function envoyermail($mail, $emailsubject, $contenu, $fromname, $frommail, $organisation, $textorhtml, $timezone) {
error_reporting(0);
if (strtoupper(substr(PHP_OS,0,3)=='WIN')) { $eol="\r\n"; }
elseif (strtoupper(substr(PHP_OS,0,3)=='MAC')) { $eol="\r"; }
else { $eol="\n"; }
$headers = 'Reply-To: '.stripslashes($fromname).' <'.$frommail.'>'.$eol;
$headers .= 'Return-Path: '.stripslashes($fromname).' <'.$frommail.'>'.$eol;
$headers .= 'From: '.stripslashes($fromname).' <'.$frommail.'>'.$eol;
$headers .= 'Organization: '.$organisation.$eol;
if($textorhtml=="0") { $headers .= 'Content-Type: text/plain'.$eol; }
else { $headers .= "Content-Type: text/html; charset=iso-8859-1".$eol; }
$headers .= "X-Priority: normal".$eol;
$headers .= "X-MSMail-Priority: Normal".$eol;
$headers .= "Importance: High".$eol;
$headers .= "X-Mailer: PHP v" . phpversion().$eol;
$headers .= "MIME-Version: 1.0".$eol;
$headers .= "Delivery-date: ".date("D, j M Y H:i:s ".$timezone).$eol;
$headers .= "X-Originating-IP: [".getenv("REMOTE_ADDR")."]".$eol;
$headers .= "X-Sender-IP: " . $_SERVER["REMOTE_ADDR"].$eol;
$headers .= "Content-Transfer-Encoding: 8bit".$eol;
$headers .= 'Sender: '.$frommail.$eol;
ob_start();
echo stripslashes($contenu);
$body=ob_get_contents(); ob_end_clean();
ini_set('sendmail_from',$frommail);
$emails=split("\n", $mail);
for($i=0; $i<count($emails); $i++) {
$verif=trim($emails[$i]); $t1=explode("@",$verif); $t2=explode(".",$t1[1]); $t3=explode(" ",$verif); $t5=explode(".@",$verif); $t6=explode("@.",$verif);
if((sizeof ($t1) == 2) && (sizeof ($t2) > 1) && (sizeof ($t3) == 1) && (sizeof ($t5) == 1) && (sizeof ($t6) == 1)){
mail(trim($emails[$i]), stripslashes($emailsubject), $body, $headers);
echo "Envoyé à ".$emails[$i]."<br />";
}
}
ini_restore('sendmail_from');
error_reporting(-1);
}
$err=''; $succ="";
if(isset($_POST['envoyer'])) {
$mailto=trim($_POST['mail']);
$subject=addslashes(trim($_POST['sujet']));
$contenu=addslashes($_POST['message']);
envoyermail($mailto, $subject, $contenu, "NOM PRENOM", "admin@mymail.com", "MA SOCIETE", "1", "+0100");
$succ="Envoi réussi !";
}
?>
<form action="" method="post">
<?php if($err) { ?><font color="red"><?php echo $err; ?></font><?php } ?>
<?php if($succ) { ?><font color="green"><?php echo $succ; ?></font><?php } ?>
<table cellpadding="0" cellspacing="0" border="0">
<tr><td valign="top">E-Mails</td><td><textarea name="mail"></textarea></td></tr>
<tr><td>Sujet</td><td><input type="text" name="sujet" /></td></tr>
<tr><td valign="top">Message</td><td><textarea name="message"></textarea></td></tr>
<tr><td colspan="2" align="center"><input type="submit" name="envoyer" value="Valider" /></td></tr>
</table>
</form>
Conclusion
Bon courage :)
Historique
- 28 avril 2011 01:00:48 :
- Le code a été modifié pour ajouter un exemple pratique !
- 28 avril 2011 02:33:37 :
- ERREUR DE COMPILATION + ajout d'exemple
- 28 avril 2011 02:45:08 :
- CORRECTIFS
Sources de la même categorie
Commentaires et avis
Discussions en rapport avec ce code source dans le forum
Mail et anti-spam? [ par Varod ]
Bonjour tout le monde,Dans une application de sondage en ligne, j'utilises la fonction mail pr envoyer un lien vers le site ou est hebergé mon applica
Voila j'ai fais un bouh de code pour envoyer des mail [ par timolerigolo ]
Bonjour,Voila j'ai fais un bouh de code PHP pour envoyer des Mail mé je ne sé pas si le code et bon et comme je ne resoie pas de mail je ne sé pas....
Recup code html de fichier pour envoyer par mail() [ par Magidev ]
Je souhaite récuperer le code d'un fichier HTML de mon site pour l'envoyer par mail au meme formatDans ce code HTML il ya des var php du style $mavarE
fonction mail -> 23 caracteres max. [ par attentio ]
bonsoir G un soucis pour envoyer des mails depuis mon siteen fait ce qu'il se passe C que si mon message a une chaine de caractere supérieur a 23 cara
E-mail de newsletter est considerer comme spam [ par elmekki ]
Bonsoir,j'ai integré un newsletter dans mon site web et losrqueje fais des tests , je vois qu'il considere mon email de newsletter comme spam, sa
prbl : un include dan un envoi de mail [ par malob87 ]
bjr a tous, voici mon code complet:<?if(empty($_POST[msg]))//on vérifie avec empty voir si les champs sont vide {print "le champ msg est vide"; //s
problème d'envoi de formulaire par mail [ par Blacknight91titi ]
Salut j'ai un problème cela m'embète beaucoupje dispose d'un formulaire qui lorsque l'on clique sur envoyer envoi les info du formulaire par mail.Sur
Fonction mail! [ par jnbrunet ]
Salut,Comment fait-on pour activer la fonction mail sur easyphp?? Le code sur mon serveur payant marche très bien...mais sur easyphp ca ne marche
mail [ par rich25200 ]
bonjour, je veux envoyé un mail a partir de la fonction mail mais j'ai un prob voial mon code : $to = "xxxxx@hotmail.com"; &
Envoyer un mail par php [ par CyberMen30 ]
Depuis 3 jours, j'essaie de configurer et changer mon code pour pouvoir envoyer un mail en php.Voici mon php.ini:[code] [mail function] SMTP = m
|
Derniers Blogs
IMAGINE CUP 2012, MAKE A SIGN EN FINALEIMAGINE CUP 2012, MAKE A SIGN EN FINALE par junarnoalg
Voilà qui est fait, la nouvelle est officielle ! L'équipe belge "Make a Sign" va au pays des kangourous défendre son projet dans la catégorie Software Design. http://www.imaginecup.com/CompetitionsContent/Competition/WorldwideFinalists.aspx V...
Cliquez pour lire la suite de l'article par junarnoalg KINECT 1.5 IS OUT !KINECT 1.5 IS OUT ! par Vko
La version 1.5 du Kinect For Microsoft vient tout juste de sortir ! Plein de nouveautés: Tracking de squelette en Near Mode Détection en position assise Détection faciale avec un SDK dédié Documentation et des guideline (enfin) Un out...
Cliquez pour lire la suite de l'article par Vko LES ACTUALITéS DE LA SEMAINE SUR C2I.FR (14 MAI - 20 MAI) LES ACTUALITéS DE LA SEMAINE SUR C2I.FR (14 MAI - 20 MAI) par richardc
Mise à jour des Web API du 14 Mai
Réservez dès maintenant votre journée du 20 juin pour le Windows Azure Dev Camp 2012 à Paris
Mise à jour de Team Foundation Service
MechCommander 2 sur Windows 8
Entity Framework 5 Release Candidate e...
Cliquez pour lire la suite de l'article par richardc REACTIVE EXTENSIONS : CONSOMMER DES SERVICES AVEC RX PARTIE 3, LES PIèGES à éVITERREACTIVE EXTENSIONS : CONSOMMER DES SERVICES AVEC RX PARTIE 3, LES PIèGES à éVITER par Groc
Une mauvaise utilisation de rx lors de l'écriture d'une couche d'accès à des services peut conduire à des cas embarassants avec des erreurs mal gérées, des appels qui ne partent lorsqu'ils le devraient, et même des résultats incorrects . le tout nuis...
Cliquez pour lire la suite de l'article par Groc SHAREPOINT BLOG SITE, PROBLèME D'ARCHIVESSHAREPOINT BLOG SITE, PROBLèME D'ARCHIVES par junarnoalg
Dernièrement, nous avons migré le site
myTIC
vers un nouveau serveur SharePoint 2010. Dans les contenus que nous vouloins récupérer, nous avions un certain nombre de blogs.
Nous avons utilisé les commandes Power...
Cliquez pour lire la suite de l'article par junarnoalg
Logiciels
sDEVIS-FACTURES vlPRO (8.1.0.3)SDEVIS-FACTURES VLPRO (8.1.0.3)sDEVIS-FACTURES vlPRO a été mis au point pour les particuliers, créateurs, entrepreneurs, artisa... Cliquez pour télécharger sDEVIS-FACTURES vlPRO 974 Application Server (12.2.4.6)974 APPLICATION SERVER (12.2.4.6)Développez de puissantes applications dans un environnement de 'cloud computing', clusterisé, séc... Cliquez pour télécharger 974 Application Server vPicture (1.4.2.1)VPICTURE (1.4.2.1)Avec vPicture, hébergez vos images facilement et rapidement.
vPicture est un utilitaire simple, ... Cliquez pour télécharger vPicture Easy-Planning (2.2.1.6)EASY-PLANNING (2.2.1.6)Easy-Planning permet de créer des plannings sous la représentation de diagrammes et est adapté au... Cliquez pour télécharger Easy-Planning COM-BACKUP (2.0)COM-BACKUP (2.0)
COM-BACKUP est un logiciel de sauvegarde qui permet de planifier les sauvegardes de vos dossiers ...
Cliquez pour télécharger COM-BACKUP
|