Can I use javascript in an HTML email? I'm using VB to generate emails in Outlook 2000. I've included javascript in my HTML email, but when I send it, the receiver can only see the pure HTML portion of the email. the code is like this:
Code:
.......
.HTMLbody = "<html>............" & _
                        "<script language=Javascript ........ >.... </script>"
..........
it turns out that the javascript portion appears as an attachment of the email. What's actually going on? I used the javascript to call an .asp page. Can I do this in an email? Thank you very much!