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?

有帮助吗?

解决方案

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.

其他提示

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

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top