这是FMail.asp
Dim name,pass,serad
name="mile_24546603"
pass="111"
serad="pop3.163.com"
Set pop=Server.CreateObject("JMail.POP3")'pop3的连接用户名,密码,pop3地址
pop.Connect name,pass,serad
Response.Write( "你有" & pop3.count & " 封邮件。<br/><br/>" )
If pop.count > 0 Then
Set msg1 = pop.Messages.item(1)
End If
ReTo = ""
ReCC = ""
Set Recipients = msg1.Recipients
separator = ", "
For i = 0 To Recipients.Count - 1
If i = Recipients.Count- 1 Then
separator = ""
End If
Set re = Recipients.item(i)
If re.ReType = 0 Then
ReTo= ReTo&re.Name &"(<a href=""mailto:"&re.EMail&""">"&re.EMail &"</a>)" &separator
Else
ReCC= ReTo&re.Name &"(<a href=""mailto:"&re.EMail&""">"&re.EMail &"</a>)" &separator
End If
Next
网页中显示:
Microsoft VBScript 编译器错误 错误 '800a03f6'
缺少 'End'
/iisHelp/common/500-100.asp,行242
jmail.POP3
This function is not included in this version of jmail.
/jm/gryj/shoujianxiang.asp,行22
我的JMAIL的版本是最新的4.5的,怎么会出现调不到函数的问题呢?
请各位帮帮忙啊!在线等!