Skip to content Skip to sidebar Skip to footer

Java Scripts Not Working In Html Email Template

I have a scenario where I need to send an email using c#, which could be easily done using SMTP, but the challenge is to incorporate web service in the html mail, hence i have used

Solution 1:

Apart from struggling to understand the question, Javascript won't work in most mail clients. Deliberately disabled.

Solution 2:

You can't automatically call a web service from an e-mail letter. You have to create an URL for the recipient to open, and let them access the web service from a web page in the browser.

JavaScript, and any other third party communication method for that matter, is disabled in any reasonable e-mail client by security reasons.

Solution 3:

I'm not aware of any email client or web mail service that will execute JavaScript embedded in an HTML email.

Limit HTML use in emails to formatting. If you need an web application, then link to it instead.

Post a Comment for "Java Scripts Not Working In Html Email Template"