Can a chrome extension send an email? - google-chrome

I want to create the following Chrome extension:
A user is on a website.
They hover their clicker over an email address.
The user clicks on the email address and it automatically sends an email from the user's email account to the target address (with a pre-loaded email body). It does this without the user switching tabs.
Is this possible?
Is it possible if I restrict it to working with just Gmail and exclude other email clients?

Related

href is not recognized in email

I am trying to send a reset-password link to users email when they click forgot password in react-native app. The email is sent from Strapi using email template and includes the following code:
<p>click to reset password</p>
Reset password
The problem is that the link is not clickable in the email apps on either android nor ios. It just shows as text. However, when inspecting, the code in the email looks like:
<p>click to reset password</p>
Reset password
Is the problem the href url or is it a problem within the email providers that they don't support that kind of url?
This is a duplicate question and the solution is that "deep-links" are not widely supported in email providers. The solution is to use redirect using a normal link. For further reading see:
How to display iOS app's deep links on email as links

Hyperlink to email address

I'm trying to create a clickable email address which when clicked on, opens up the visitors' email application with the email address in the "send to".
I tried using:
mailto:emailaddress#whatever.com
It works well when the link is displayed on a mobile. It opens up the Gmail application. However, when I try to click on it on the web it does nothing.
Thank you!
Your link is valid.
mailto links are signal for your browser to open a default e-mail application.
Try specifying default E-Mail application in your OS or another browser.
P.S. Email Us also works well
That is possible, if your visitor has a default mail app on their computer. Same way as they have gmail/iosmail/anymailapp on their phone.

Link to mail server from website

I have an email page on my website with a form and tinyMCE and all that fancy stuff, but I also want to add a couple of links to the popular mail servers such as gmail, yahoo, and hotmail.
I've seen some links that go to the my Microsoft Office Outlook (which I never use), and I've also seen a gmail link that opens up gmail in a new tab with a form already open and a mailto: value already given. Just wondering how this is done if I, lets say, have a mailto: value to send and perhaps a subject and message.
Just to make it clear, I want three or four image links on my page, each one for a different mail server (gmail, yahoo...) and when clicked on, it opens a form partly filled out (a mailto:value and possibly a subject and/or message) fullscreen. Thanks.
It's not going to be easy, as you'll have to integrate with each one of these services. How about going at it a different way? For GMail (at least on Chrome) you can figure the web app as the handler for your mailto: links. With that, you can create a link that opens GMail, optionally with subject and body filled in. See RFC2368 for details, or try this link.
Most users don't have accounts on all of the web mail services you mentioned anyways, and using the mailto link allow the mail to the sent using the user's default e-mail client (may it be Outlook, or GMail) which most people prefer anyways.

How to trigger email automatically without clicking send button when clicked on Mailto link

My title speaks what i need. Here is my scenario. My application will be sending html formatted emails to user with a Accept/Reject link. I would like to trigger email's automatically with a customized Subject to a mail id when the user clicks on Accept/Reject button.As Recipients of this mails are outlook users,i have to trigger send (ctrl+Enter) button of outlook. Is this possible with a mail-to link.
Please don't suggest opening a page there by i can accomplish my task. That's not i want. Please help on this.
You cannot do that with a mailto link. Why not use the Outlook Object Model to create a new item and send it programmatically? See http://msdn.microsoft.com/en-us/library/ms268749.aspx

How to make email sending options

What i want to achieve is , when i click my contact us link a pop up should open which says "This link needs to be opened with an application". An below there should be options for opening the link using either gmail or outlook or yahoo.
When you create a hyperlink of type <a href="mailto:your#emailadres.com"?subject=mysubject>Contact me</a> then the webbrowser will open the link in the user's default email program.
You can't "force" a user to open a specific email application or webmail system and it isn't usefull either because every user has it's own default email (web)application.