Asp classic 我可以在asp发送邮件中嵌入图像吗?

Asp classic 我可以在asp发送邮件中嵌入图像吗?,asp-classic,Asp Classic,我有一个客户,有老学校的asp。是否可以编辑asp文件以嵌入图像?我只有一个asp文件,在这个asp文件中有一个这样的自动响应表单 body = "Dear " & cName & "," & vbcrlf & vbcrlf & "Your request for the " & vehHeader & " (" & FormatCurrency(vehPrice)& ")" & " has been receive

我有一个客户,有老学校的asp。是否可以编辑asp文件以嵌入图像?我只有一个asp文件,在这个asp文件中有一个这样的自动响应表单

body = "Dear " & cName & "," & vbcrlf & vbcrlf & "Your request for the " & vehHeader & " (" & FormatCurrency(vehPrice)& ")" & " has been received and will be reviewed promptly." & vbcrlf & "We will contact you shortly to verify your information." & vbcrlf & vbcrlf & "Thank you for using ClassicShowcase.com."
AppSendMail AppSupportMailto, cEMail, "Confirmation of vehicle request...", body
AppReportError "CUBid.asp: Error sending confirmation e-mail."

AppSendMail AppSupportMailto, AppSupportMailto, "Web bid for the " & vehHeader, "Check Administration Center for details."
AppReportError "CUBid.asp: Error sending confirmation e-mail."

我没有VB文件或解决方案文件我如何才能从服务器嵌入图像,以便用户收到自动回复电子邮件时可以查看一些图像

是的,当然,如果您使用的应用程序可以在正文中发送HTML,则只需在正文中添加图像即可

 <body>
     <h1>Hello World</h1>
     I'm sending you this postcard:
     <img src="http://yourdomain.com/images/yourimage.jpg" alt="postcard" />
 </body>

你好,世界
我给你寄这张明信片:
重要的是:

  • 始终将完整路径添加到图像,因为电子邮件将在您的站点之外打开

  • 爱德华多(喜欢这张照片!)是对的。而图像的完整URL是至关重要的

    body变量是发送给请求者的电子邮件上要显示的内容。是否希望在正文中包含图像,还是希望在电子邮件中附加图像?我希望在电子邮件正文中包含图像