首页 > Setting the Reply-To Header in an Email using CDONTS.NewMail Object and CDO Message

Setting the Reply-To Header in an Email using CDONTS.NewMail Object and CDO Message

代码
 1 <%

 2 Option Explicit

 3 

 4 Dim objMail

 5 Dim strSubject

 6 Dim strBody

 7 

 8 strSubject = "This is a test email"

 9 strBody    = "This test email is using [email protected] " & _

10            " as the sender email address but we are " & _

11            " using [email protected] as the Reply-To header."

12 

13      

14 ' First create an instance of NewMail Object

15 Set objMail = Server.CreateObject("CDONTS.NewMail")

16 

17 ' Please replace the "From" and "To" email addresses with your 

18 ' own valid email address. I recieve too many emails 

19 ' from people who test this sample and keep sending 

20 ' emails to [email protected], or they keep the "From" property

21 ' as [email protected] and I get response of 

22 ' undeliverable emails.

23 ' NOTE: If the "To" or "From" properties of CDONTS contain 

24 ' invalid email address you will not recieve the email.

25  

26 objMail.From = "[email protected]"

27 objMail.To   = "[email protected]"

28 

29 ' Use the value property of the CDONTS.NewMail Object

30 ' to Set the Reply-To header

31 

32 objMail.Value("Reply-To"= "[email protected]" '回复邮件地址

33 

34 objMail.Subject = strSubject

35 objMail.Body    = strBody

36 

37 objMail.Send

38 

39 Set objMail = Nothing

40 %>

41 

42 

43  

44 

45 <

46 

47 strText = "Test" 

48 

49 Const cdoSendUsingPort = 2 

50 

51 Const strSmartHost = "myLocalSMTPHost" 

52 

53 Set myMail = CreateObject("CDO.Message"

54 

55 Set iConf = myMail.Configuration 

56 

57 With iConf.Fields 

58 

59 .item("http://schemas.microsoft.com/cdo/configuration/sendusing"= cdoSendUsingPort 

60 

61 .item("http://schemas.microsoft.com/cdo/configuration/smtpserver"= strSmartHost 

62 

63 .Update 

64 

65 End With 

66 

67 With iConf.Fields 

68 

69 .item("http://schemas.microsoft.com/cdo/configuration/sendusing"= cdoSendUsingPort 

70 

71 .item("http://schemas.microsoft.com/cdo/configuration/smtpserver"= strSmartHost 

72 

73 .Update 

74 

75 End With 

76 

77 With myMail 

78 

79 myMail.From = "[email protected]" 

80 

81 myMail.To = "[email protected]" 

82 

83 myMail.ReplyTo = "[email protected]"  '回复邮件地址

84 

85 myMail.Subject = "Internet Communication from Me" 

86 

87 myMail.HTMLBody = strText 

88 

89 myMail.Send 

90 

91 End With 

92 

93 Set myMail = Nothing 

94 

95 %> 

96 

97 

 

 

转载于:https://www.cnblogs.com/geovindu/archive/2010/01/29/1659308.html

更多相关:

  • 上篇笔记中梳理了一把 resolver 和 balancer,这里顺着前面的流程走一遍入口的 ClientConn 对象。ClientConn// ClientConn represents a virtual connection to a conceptual endpoint, to // perform RPCs. // //...

  • 我的实验是基于PSPNet模型实现二维图像的语义分割,下面的代码直接从得到的h5文件开始往下做。。。 也不知道是自己的检索能力出现了问题还是咋回事,搜遍全网都没有可以直接拿来用的语义分割代码,东拼西凑,算是搞成功了。 实验平台:Windows、VS2015、Tensorflow1.8 api、Python3.6 具体的流程为:...

  • Path Tracing 懒得翻译了,相信搞图形学的人都能看得懂,2333 Path Tracing is a rendering algorithm similar to ray tracing in which rays are cast from a virtual camera and traced through a s...

  • configure_file( [COPYONLY] [ESCAPE_QUOTES] [@ONLY][NEWLINE_STYLE [UNIX|DOS|WIN32|LF|CRLF] ]) 我遇到的是 configure_file(config/config.in ${CMAKE_SOURCE_DIR}/...

  •     直接复制以下代码创建一个名为settings.xml的文件,放到C:UsersAdministrator.m2下即可