Server.CreateObject("CDO.Message")
	message="
Server.CreateObject("CDO.Message")
Cher client,
Ceci est un mail généré automatiquement afin de confirmer votre commande.
Nous avons bien reçu votre demande et nous vous envoyons ci-joint (format pdf) le fichier qui s'y rapporte. 
En vous remerciant de votre commande, veuillez agréer, cher client, l’expression de nos sentiments les meilleurs.
VO Consulting"
	var objMail = Server.CreateObject("CDO.Message");
	objMail.From = "sonemail[at]vo-consulting.be";
	objMail.To = "monemail[at]vo-consulting.be";
	objMail.Bcc = "Bcc[at]vo-consulting.be";
	objMail.Subject = "information de votre site internet";
	objMail.HTMLBody = message;
	objMail.AddAttachment("F:\\Inetpub\\wwwroot\\gestion\\pdf\\file.pdf");
	objMail.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2;
	objMail.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/smtpserver") = "SMTP IP"; 
	objMail.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/smtpserverport") = 25;
	objMail.Configuration.Fields.Update();
	objMail.Send();
	objMail = null;