Sendmail - image filename as a hyperlink |
7/13/2008 21:57:24 | |
| ASPRunnerPro General questions | ||
|
Is it possible to send an image as a link/filename in an email event? Tried many different methods but cannot seem to send an image filename . The example below dict("photo_link") is setup in another table as a file/image . I created another table and called the file through a lookup and set view as text . Also tried hyperlink ; but none of them go with the email example below. message = message & " <img alt="""" border=""0"" src=""http://www.test.com/photos/"" & dict("photo_file") & "">"" & vbCrLf which could not get to work either. cannot seem to concate the file and field together. |
||
|
J
|
Jane 7/14/2008 |
|
John, |
|
|
|
lefty author 7/15/2008 |
|
Thanks Jane , |
|
|
J
|
Jane 7/31/2008 |
|
John, message = message & "http://www.test.com/photos/" & dict("photo_file") & vbCrLf |
|
|
|
lefty author 8/1/2008 |
|
Thanks Jane, |
|
|
J
|
Jane 8/1/2008 |
|
John. message = message & "<a href=""http://www.test.com/photos/" & dict("photo_file") & """>Image link</a>" & vbCrLf |
|
|
|
lefty author 8/1/2008 |
John. don't add double quotes to the code. If you want to send hyperlink in HTML format use following code:
|
|