Pregunta

I developed a web page in asp.net to send HTML email.
I did the coding for sending the mail in asp.net.
The issue is, after sending the mail I need to open a popup window from the mail using hyperlink.
Is this possible?

¿Fue útil?

Solución

From a comment on another answer:

I need to open it as a popup window. Not in a new tab.

That requires JavaScript. You cannot run JavaScript in an email. Therefore you cannot achieve what you want.

Otros consejos

Try:

<a href='yourULR' target="_blank"> description </a>

This should make it open as a pop-up (unless default browser setting are different)

Although it's not recommended to use pop ups anymore because most users find it extremely annoying.

Hope this helped.

It's possible, just put your:

<a href='yourULR'>description</a>

in your email

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top