标题: 在OWA中打开正文为HTML格式的邮件时,会把链接地址过滤掉,在OutLook中收的就正常 [打印本页] 作者: xiemingyou 时间: 2004-9-26 16:10 标题: 在OWA中打开正文为HTML格式的邮件时,会把链接地址过滤掉,在OutLook中收的就正常 用以下代码发邮件。<br>Dim oMail As New Mail.MailMessage<br>oMail.From = ctlFrom.Text<br>oMail.To = ctlTo.Text<br>oMail.Subject = ctlSubject.Text<br>oMail.BodyFormat = MailFormat.Html<br>oMail.BodyEncoding = Encoding.Default<br>oMail.Body = "<html><head><title>测试</title></head><body><a href=" & "链接地址" & ">链接</a></body></html>"<br>SmtpMail.SmtpServer = "serverName"<br>SmtpMail.Send(oMail)<br>oMail = Nothing<br>
在OWA中打开该文件时,会把链接地址过滤掉,在OutLook中收的就正常,不知是何原因。作者: xiemingyou 时间: 2004-10-5 17:32 标题: re:我看了一些有关SDK的资料,估计通过Fo... 我看了一些有关SDK的资料,估计通过Form Register可以解决该问题,也就是重新自定义邮件打开时Exchange要显示的表单。但是如何在Exchange 2003中上传自定义表单呢?在Exchange 2000中,会有一个虚拟盘表示Pulic目录,但在Exchange 2003中没有相应的虚拟盘。又如何全局性地改变邮件打开时的表单呢?还望众多高手多多指教。作者: xiemingyou 时间: 2004-10-8 14:14 标题: 好像没人对这个话题感兴趣,有人碰到这种情况吗? 好像没人对这个话题感兴趣,有人碰到这种情况吗?我不希望OWA过滤到我的链接地址。<br>
以下是重新建立M盘的方法<br>
1.Click Start, and then click Run. <br>
2.In the Open box, type regedit, and then click OK. <br>
3.Locate and then click the following registry key: <br>
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\EXIFS\Parameters <br>
4.On the Edit menu, point to New, and then click String Value. <br>
5.Type DriveLetter, and then press ENTER. <br>
6.On the Edit menu, click Modify. <br>
7.In the Value data box, type M, and then click OK.<br>
Note If you want to map IFS to a drive letter other than M, type the drive letter that you want in the Value data box. <br>
8.Quit Registry Editor. <br>
9.Restart the Exchange Information Store service.<br>
我试过用Form Register,但好像只能针对Public Folder的Message才有效,而对私有邮箱的邮件无效,不知何故?<br>