Email Link Unable to open on outlook - hyperlink

In my project i integrated html email for reset password option.User click on link and if user submit his email he will get mail having link to reset his password.
The link is opening on Gmail. But the same link is not working when I open in Out look. It is non clickable mode.
Is html email won't workout on Outlook? or coding any change required to integrate.
Please reply?

Finally I resolved the issue. In my web page having some commented code. When I removed the commented code now the mail is coming properly and all the links are working. I believe this commented code has some influence in terms of security concern of outlook.
So when ever write the mail function etc need to make the page is very clean and all unwanted comments etc should be removed.

Related

Whatsapp Share Link "whatsapp://send?text=text-here" not working with Gmail as receiver

The following code is an example for the whatsapp-share-link.
Per WhatsApp empfehlen
It works well with other email providers than Gmail, but Gmail is filtering the source code and disables the link.
Gmail edits all links, so they have brackets around, when you click "view the original" in Gmail. And the whatsapp-share-link is not working anymore.
[https://www.google.com]
[whatsapp://send?text=Ich%20habe%20einen%20interessanten%20Blog%20f%C3%BCr%20dich%20entdeckt%3A%20http%3A%2F%2Fblog.kulturbanause.de]
When I forward an Email, that has been received by Gmail, than all standard-links are still working, but the whatsapp-share-link is completely removed from the sourcecode.
Does someone know any workarounds? We want to use this share-link in our newsletter.

Email Verification link not working when clicked, but works when pasting the link url itself

I have a verification email that is sent out to users that sign up for a website I have developed. When the user signs up I send them an HTML email that has an anchor tag (hyperlink) <a href="https://app.example.com/verify-email/akdios-aksdjofs-aisodfjsa" >Activate Account</a>.I believe this is a URL/href problem because if you click on the link it only takes you to the site https://app.example.com. Whereas if you paste the link in the browser then the proper verification page is loaded and the account is verified.
Email clients tested: outlook, (and various work email domains.).What would be causing my link to not work when clicked, but works when I copy the link in the email, then paste it into the browser url?Is there a way to ensure that clicking the link will work no matter what the email client (specifically outlook has been giving trouble).

Reply button in Email MVC 4

I am using MailerBase in MVC 4.0 to send the Email. This is working fine perfectly. My question is: When I send the Email, I want to add a button, so that when user click on this button, will send reply of the email without clicking the default button like Reply in yahoo/GMail mails.
Is it possible in .NET MVC4 ?
This question is not specifically related to ASP.NET MVC. The closest you could get is to include an anchor with the mailto: inside the body of the message:
Reply
If the user clicks on this link it will be opened with the default email client that he has associated on his computer.
This being said, doing such things is a bad idea. People normally know how to reply to emails in their favorite email client. Another reason why this is a bad idea is that most email clients will simply block links in email messages especially if they are not from trusted sources. So even if you include such link it will be useless.

Can't click on link inside an outlook email sent by Rails

I have a problem when i send email using Rails email text format, the email contains a link for password reset and all work fine, but when i open email in outlook the link is shown but can't click on. this problem is only when send an email to an hotmail/live/outlook account, is there a solution for that?
Check out this link. It may be a simple matter of changing your Outlook settings.
http://office.microsoft.com/en-us/outlook-help/enable-or-disable-links-and-functionality-in-phishing-e-mail-HA001229962.aspx

Open email link in an existing open window

We send out a confirmation email on completed registration. User need to click a link to confirm the registration, this link opens up a new window. Bog standard procedure...
How can I get the new window to open up in the existing window (or close the old window)?
[Update, not sure if I was clear enough.]
When I click on the confirmation link I want it to open or replace the window I still have open from the registration process.
You can't control the user's email client (and this is a good thing), so you cannot direct how it opens links.
You could use a script on the "old" page (the one used to enter email address, profile details, etc.) to poll your server and do something once registration is confirmed. If the user closes this page before that happens, e.g. opens another link on the site, this works well by not moving them where they don't expect.
The user would still have the registration page open, so simply put instructions on that along the lines of "email address confirmed, would you like to now 1) do this, 2) that, or 3) something else" (all links).
Use the target="_top" attribute, i.e.
linktext
That will solve your problem

Resources