Bonjour a tous,

Voila j'ai un petit souci, je voudrais faire un script .vbs qui créer .html pour la signature email. j'ai réussi a faire ce script mais le souci est que il met un saut de ligne entre le trait et le texte. Sous Internet Explorer le saut de ligne n'y est pas mais sous outlook il y est,
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
sign.WriteLine "<body lang=EN-US link=blue vlink=purple>"
        'sign.WriteLine "<hr style align= 'left'; size= 0.5px; width=100%; color= '#00009C'>"
	'sign.WriteLine "<table border = 0 CELLSPACING=0 CELLPADDING=0 width=100%><tr>"
        sign.WriteLine "<table cellpadding=0 width=85%><tr valign=bottom height=1px colspan=3>"
	sign.WriteLine "<td CELLSPACING=0 CELLPADDING=0 colspan=3><hr style align= 'left'; display: inline; style='font-size:7.5pt'; size= '1px'; width= '100%'; color= '#00009C'></td></tr>"
        sing.WriteLine "<span lang=FR style='font-size:10pt;font-family:Arial;color:black'>"
	sign.WriteLine "<td align=left nowrap=nowrap valign=top; style='font-size:10pt;font-family:Arial;color:black'><b>" & ajuste(rs("prenom")," "," ") & " " & ajuste(rs("nom")," "," ")& "</b></span><br>"
        sign.WriteLine "<span lang=FR style='font-size:8.5pt;font-family:Arial;color:black'>"
        sign.WriteLine "<b>" & ajuste(rs("Fonction")," "," ")& "</b><br></span>
        ................................
"
Je vourdrais que ca soit comme ca.



Merci pour votre aide.