Deltaflyer
Programmer
With this coding on an ASP page,
x=""
x=x&"<html><body>"
x=x&"<img src=../images/" & picture & ">"
x=x&"</tr>"
x=x&"</table>"
x=x&"</body></html>"
oConnect.Execute "EXEC master..xp_sendmail @recipients='" & address & "',@subject='Xmas Card',@message='" & x & "'", 1
I am trying to send Xmas card pictures via sql-email, however all that i am receiving from the server is <html><body><img src=../images/xmas1.gif></tr></table>
</body></html>
Has anybody done this before and if so what tags do i need to make the output = HTML.
Thanks for your help. DeltaFlyer
The Only Programmer To Crash With Style. LOL
x=""
x=x&"<html><body>"
x=x&"<img src=../images/" & picture & ">"
x=x&"</tr>"
x=x&"</table>"
x=x&"</body></html>"
oConnect.Execute "EXEC master..xp_sendmail @recipients='" & address & "',@subject='Xmas Card',@message='" & x & "'", 1
I am trying to send Xmas card pictures via sql-email, however all that i am receiving from the server is <html><body><img src=../images/xmas1.gif></tr></table>
</body></html>
Has anybody done this before and if so what tags do i need to make the output = HTML.
Thanks for your help. DeltaFlyer
The Only Programmer To Crash With Style. LOL