how to put script into an email?

  • Thread starter Thread starter andre
  • Start date Start date
A

andre

Hi,

I wonder how to put a VB or javascript into an email. I wrote this as text
into the email but it's not executed:
<html><title>test</title><head></head>
<body>
<script language="javascript">
alert("ok")
</script></body></html>

Any clue is welcome, thanks
andré
 
Thankfully practically all clients are blocking scripts from executing these
days. Also browser settings prevent this from executing and otherwise the
virusscanner will kick in. So actually the answer is that it is not
possible.
 
For Outlook and Outlook Express users, the default is to use the
Restricted Sites security zone. The default level for the Restricted
Sites security zone is HIGH which blocks all Java applets, javascript,
and scripting. Presumably other e-mail clients have a similar feature
and will disable scripting as the default configuration.

You do NOT run scripts in e-mails! That is rude since you violate the
recipient's trust that you will not interfere with the use of THEIR
computer. Only spammers try to pull this crap. So, you must be a
spammer.

Put a link to a web page and let your readers determine if they trust
you by visiting that site.
 
Back
Top