简体   繁体   English

跟踪通过MS Access发送的Outlook电子邮件的打开率?

[英]Track open rate of outlook emails being sent through MS Access?

I have coded that I can send MS Outlook emails via MS Access. 我已编码为可以通过MS Access发送MS Outlook电子邮件。 I was wondering if there is anyway to code tho check if these emails are being opened? 我想知道是否有代码可以检查这些电子邮件是否已打开?

Or is there another service I can link with this to track the analytics of the email I am sending out through MS Access? 还是有我可以链接的另一项服务来跟踪我通过MS Access发送的电子邮件的分析?

‘Code to format email and set it to variable strHTML here


‘code to send email
With cdomsg
.To = emailstr
.FROM = fromemailstr
.subject = Forms!frmMain.txtSubject
.HTMLBody = strHTML
.Send

End With
    Set cdomsg = Nothing

open rates are very hard to detect. 打开率很难检测。 You have to use outside services to actually detect if your email was opened. 您必须使用外部服务来实际检测您的电子邮件是否已打开。 Your email will at least have to support html (not text only) to know if it was opened. 您的电子邮件至少必须支持html(不是纯文本)才能知道它是否已打开。 usually its a reference to in the body of an html email 通常是对HTML电子邮件正文的引用

 <img src="http://yourdomain.com/file.jpg?campainid=52&send_method=Access" height=0px;width=0px;">

JavaScript is usually out of the question in emails, but not as much in web mail. 在电子邮件中,JavaScript通常是不可能的,但在网络邮件中却没有那么多。

It would be best to use a email tracking provider, then to reinvent this wheel yourself, but you can try with my idea. 最好使用电子邮件跟踪提供程序,然后自己重​​塑此轮子,但是您可以尝试我的想法。

There are many other methods out there using email tracking tools 使用电子邮件跟踪工具还有许多其他方法

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM