SAlve a tutti scusate ancora ma non riesco a venirne a capo.
Il mio problema è questo devo fare in modo che mandando una mail a tutta la mailing list venga visualizzata nel testo di quest'ultima un immagine già caricata sul server di cui ho giaà verificato l'esistenza...
vi posto il codice:
DIM objMail
Set objMail = Server.CreateObject("CDO.Message")
html = ""
html = "<html>"
html = html & "<body>"
html = html & "<div align=""center"">"
html = html & " <center>"
html = html & "<table border=""0"" cellpadding=""0"" cellspacing=""0"" style=""border-collapse: collapse"" bordercolor=""#111111"" width=""685"" id=""AutoNumber1"" height=""289"">"
html = html & " <tr>"
html = html & " <td width=""685"" height=""70"" colspan=""3"">"
html = html & " <p align=""center"">"
html = html & " <img border=""0"" src=""http://www.prova.it/images/aqua.jpg"" width=""700"" height=""150""></td>"
html = html & " </tr>"
html = html & " <tr>"
html = html & " <td width=""672"" height=""9"" background=""http://www.prova.it/images/Nuvola.jpg"">"
html = html & " <p align=""center""><b><font face=""Verdana"" color=""#0000FF"">"&titolo&"</font></b></td>"
html = html & " </tr>"
html = html & " <tr>"
html = html & " <td width=""672"" height=""11"" background=""http://www.prova.it/images/Nuvola.jpg"">"
html = html & " <p align=""center""> </td>"
html = html & " </tr>"
html = html & " <tr>"
html = html & " <td width=""672"" height=""191"" background=""http://www.prova.it/images/Nuvola.jpg"" valign=""top"">"
html = html & " <p align=""justify""><b><font face=""Verdana"" size=""2"">"&testo&"</font></b></td>"
html = html & " </tr>"
html = html & " <tr>"
html = html & " <td width=""672"" height=""191"" background=""http://www.prova.it/images/Nuvola.jpg"" valign=""top"">"
html = html & " <p align=""justify""><b><font face=""Verdana"" size=""2"">Invito per:</font></b><br>"
html = html & " <img border=""1"" src=/&immagine&></td>"
html = html & " </tr>"
html = html & "</table>"
html = html & " </center>"
html = html & "</div>"
Nell'ultima parte ho la variabile immagine che contiene il percorso sul server della immagine da inserire nell'email HTML.
Il suo valore che ho gia verificato ed è corretto è public/fileNxxx.jpg
Grazie in anticipo aspetto un vostro aiuto... Sono nei guai!