Gracias por tu tiempo dedicado. Te paso el contenido del fichero.asp
Pero como te comente yo lo estuve mirando, simplificándolo al máximo hasta llegar a la conclusión que el problema venia del parámetro HyperlinkAddress. Pienso yo...
No obstante quizás veas algo que se me pudo pasar a mí. En el username y el password te aseguro que están bien introducido. Saludos
<%@ Language=VBScript %>
<!--#include file="adovbs.inc"-->
<%
emp = Request.QueryString("Empresa")
acc = Request.QueryString("Accion")
anyo = Request.QueryString("anyo")
Dim objMail
Set objMail = Server.CreateObject("Persits.MailSender")
objMail.Host = "smtp.arvet.es"
objMail.Username = "xxxxx"
objMail.Password = "xxxxx"
objMail.From = "
[email protected]"
objMail.FromName="Arvet"
objMail.IsHTML = True
objMail.Subject = "ALTA EMPRESA EN UNA ACCION DE PROMOCION"
objMail.AddAddress "
[email protected]"
objMail.IsHTML=False
objMail.Body="Se ha dado de alta " & emp & " en la acción " & acc & " año " & anyo
objMail.Send
'self.close()
%>
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body bgcolor="#FFFFFF">
<table border="0" cellpadding="0" cellspacing="0" width="485">
<tr>
<td colspan="2"> <br>
</td>
</tr>
<tr>
<td colspan="2"> <br>
<table border="0" cellpadding="0" cellspacing="0" width="485">
<tr>
<td align="right"><img src="../images/cantonera_izqda1.gif" width="7" height="7"></td>
<td bgcolor="#F8F4EE"><img src="../images/cantonera_alto.gif" width="1" height="7"></td>
<td><img src="../images/cantonera_dcha1.gif" width="7" height="7"></td>
</tr>
<tr>
<form name="buscador" method="POST" action="">
<td width="7" bgcolor="#F8F4EE"><img src="../images/cantonera_ancho.gif" width="7" height="1"></td>
<td bgcolor="#F8F4EE">
<table border="0" cellpadding="0" bgcolor="#F8F4EE">
<tr> </tr>
<tr>
<td><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Se
ha mandado un e-mail al dpto. de administración, comunicando
el alta de la <b>Empresa</b> <% = emp%> en la <b>Acción</b>
<% = acc%> <% = anyo%> </font></td>
</tr>
</table>
</td>
<td width="7" bgcolor="#F8F4EE"><img src="../images/cantonera_ancho.gif" width="7" height="1"></td>
</form>
</tr>
<tr>
<td align="right"><img src="../images/cantonera_izqda2.gif" width="7" height="7"></td>
<td bgcolor="#F8F4EE"><img src="../images/cantonera_alto.gif" width="1" height="7"></td>
<td><img src="../images/cantonera_dcha2.gif" width="7" height="7"></td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>
<script language="VBScript">
self.close()
</script>