how to embed a flash in html by Csharp

  • Thread starter Thread starter Wu
  • Start date Start date
W

Wu

Hello,

I have to embed a flash in a html email by csharp. Don't you know how to do
it? I found some source in code project, but the activeX does not able to
run at default security level.

Please advice.

Wu
 
I dont think most email readers will allow this at all. You would propbably
need to iframe to a web page or something but even that might not work. What
do you want to achieve with the flash. If its simple animation then a moving
gif might be better
 
Hello,

I have to embed a flash in a html email by csharp. Don't you know how to do
it? I found some source in code project, but the activeX does not able to
run at default security level.

Please advice.

Wu

First of all this has nothing to do with C#.

You can embed anything in a HTML email, it is responsability of the
email viewer to allow it to run or not. Most of them though do not
allow any ActiveX to run. Some are as restrictive that do not allow
linked images to be displayed.
 
Hello Machin,

I want to embed and do a page load to send the acknowledgement back to the
sender when the receipt open it.

Is there any better to do it?

Thanks

Wu

message
 
Hello Machin,

I want to embed and do a page load to send the acknowledgement back to the
sender when the receipt open it.

Is there any better to do it?

Thanks

Most of the mail clients will forbid you doing this, it's just basic
protection. If it would been allowed then a spammer can know if an
email address is valid, it can add a Guid value in the request that
can match with the original email address.

You should do it in another way. You should put a link in the page
that the user should click and then open the real page with all the
flash and other stuff you want.
 
Back
Top