2009-11-19 53 views
0

我有一個有老派asp的客戶端。是否有可能編輯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文件或解決方案文件如何將我能夠從服務器中嵌入圖像,所以當用戶得到的自動回覆的電子郵件,他可以查看一些圖片

+0

身體變量是發送給請求者的電子郵件中顯示的內容 – Silent 2009-11-19 21:43:05

+0

您想在身體中放置圖像還是想要將圖像附加到電子郵件中? – Bertine 2009-11-19 23:32:10

+0

我希望它在電子郵件的正文中 – Silent 2009-11-23 20:25:16

回答

2

是的,當然,如果你使用的是可以在體內發送HTML格式的應用程序,你只需要在身體

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

重要添加圖像事情:

  • 始終的完整路徑添加到圖像,因爲該電子郵件將您的網站
-1

愛德華外面打開(愛PIC!)是正確的。而圖片的完整網址至關重要!

相關問題