-
[2004-10-01] IMail基础教程(一) DNS设置 - 1
总论概述
一、本教程的目的
假设本机的IP地址为“192.168.0.48”,欲建立一个名为“nanshan@163.net”的可用的E-Mail地址,并可用POP3方式和
Web方式收发邮件。
二、本教程的安排
1、第一节 DNS设置:教你建...
-
[2004-10-01] 邮件服务器端软件-IMAIL基础教程
本基础教程以IMAIL6.05加上WIN2K为例,面向对象是对IMail一无所知的人。目前共有文章五篇,涵及从DNS设置到
IMAIL的下载、安装、建立第一个可用的电子邮件地址及用POP3方式和WEB方式测试收发此邮件。我尽量放...
-
[2004-10-01] 用ASPMail组件实现E_mail自动反馈
网页上E_mail自动反馈的asp程序示例如下:
<%
Set mailer = Server.CreateObject("ASPMAIL.ASPMailCtrl.1")
recipient="接收者email"
sender="发送者email"
subject="...
-
[2004-10-01] jmail4.1用pop3收信的例子
【caoli】 于 2000-12-22 17:24:14 加贴在 Joy ASP ↑:
<% Set pop3 = Server.CreateObject( "JMail.POP3" )
'pop3的连接用户名,密码,pop3地址
pop3.Connect "username", "pas...
-
[2004-10-01] 用ASP发送HTML格式的邮件
<%
Dim objMail
Set objMail = CreateObject("CDONTS.Newmail")
objMail.TO = "bhumphre@confederationc.on.ca"
objMail.From = "Whoeveryouwant@whereever.com" '在这里可以选...
-
[2004-10-01] 在Windows桌面上使用WSH接收邮件
公司的销售管理人员日常想要接收订单在$10,000元以上的电子邮件,同时也很愿意感谢来信订购的用户。电子邮件的主体要包括所有必要的信息,因此就没有必要访问公司客户/服务器程序。第一步是近可能地委派数据库...
-
[2004-10-01] 如何在ASP+中发送邮件
This article features how to send email from an ASP+ page. Using email from an ASP+ page has many uses
(Notify of errors, inform people about a a subject. etc..). This code sample sends a formatt...
-
[2004-10-01] asp电子报制作与程序
电子报大概包括三个部份:(一).订阅系统(填写窗体、修改资料、退订、查询密码);(二).电子报的制作与传
送;(三).讨论回响。
伺服环境:IIS4.0/5.0或PWS,使用CDOMail或其它Mail组件(如:JMail、A...
-
[2004-10-01] 我这有一个,不知道是不是你要的东西~
<%
Set mail1 = Server.CreateObject("Jmail.smtpmail")
mail1.serveraddress="61.134...
-
[2004-10-01] 用cdonts发送邮件的两个函数
用cdonts发送邮件的两个函数,非常好用,快记录下来!
--------------------------------------------------------------------------------
freezwy 于 2001-6-29 11:47:02 加贴在 J...
-
[2004-10-01] 附件:sendmail.asp
<!--
This sample script uses the CDO for NTS Library to
send email to a specific user.
Leon Braginski & Matt Powell (c)
...
-
[2004-10-01] 常用Email组件发送函数
<%
sub Jmail(email)
Dim JMail,SendMail
Set JMail=Server.CreateObject("JMail.SMTPMail")
JMail.Logging=True
JMail.Charset="gb2312"
JMail.ContentType = "text/html&qu...