OrbitMascot
Programmer
This is a question concerning inserting an image into an email that is sent from Access 97.
Listed below is the current code that is used to produce the email. Everything works fine, except the email just shows a graphic box in the email not the actual graphic that is needed to be seen.
I have been doing some research on the problem and have yet to come up with any solutions. Any information that anyone could provide would be greatly appreciated. Thanks for all of you help.
ndBodyShop = "<html><body><img scr=""U:\data\distribution\invoices\logo.jpg""><body><html>" & "<p><font face=Arial color=blue size=8>**DATE CHANGE**</font>" & "<br><p><font face=Arial size=4> One of our New Shops has a new delivery date, please refer to the information below: <br><p>" & "<p><font face=Arial size=6>Store: " & [newstore] & "<p><font face=Arial size=6>Shop: " & [newshop] & "<p><font face=Arial size=6>Old Ship Date: " & [olddate] & "<p><font face=Arial size=6>New Ship Date: " & [newdate]
With objEmailShop
.To = ndEmailShop
.Subject = "UPDATE on New Shop Setup"
.HTMLBody = ndBodyShop
.Send
End With
Listed below is the current code that is used to produce the email. Everything works fine, except the email just shows a graphic box in the email not the actual graphic that is needed to be seen.
I have been doing some research on the problem and have yet to come up with any solutions. Any information that anyone could provide would be greatly appreciated. Thanks for all of you help.
ndBodyShop = "<html><body><img scr=""U:\data\distribution\invoices\logo.jpg""><body><html>" & "<p><font face=Arial color=blue size=8>**DATE CHANGE**</font>" & "<br><p><font face=Arial size=4> One of our New Shops has a new delivery date, please refer to the information below: <br><p>" & "<p><font face=Arial size=6>Store: " & [newstore] & "<p><font face=Arial size=6>Shop: " & [newshop] & "<p><font face=Arial size=6>Old Ship Date: " & [olddate] & "<p><font face=Arial size=6>New Ship Date: " & [newdate]
With objEmailShop
.To = ndEmailShop
.Subject = "UPDATE on New Shop Setup"
.HTMLBody = ndBodyShop
.Send
End With