Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to mailto to office 365?

Tags:

How to mailto to office 365 like this one on the gmail - Open Gmail on mailto: action.

I have this link:

https://outlook.office365.com/owa/#viewmodel=IMailComposeViewModelFactory

but I have no idea for recipient parameter to put in the TO. Please help guys.

Here's how it do it in Gmail:

<a href="https://mail.google.com/mail/?view=cm&fs=1&[email protected]">[email protected]</a> 

Now here's what i do in Office 365 but i dont know what is the right parameter for the Recipient:

<a href="https://pod51038.outlook.com/owa/#viewmodel=IMailComposeViewModelFactory">[email protected]</a> 
like image 711
mak Avatar asked Jul 18 '13 04:07

mak


People also ask

How do I link my mailto to Outlook?

In the message, select the text or picture that you want to display as the link. On the Insert tab, click Link or Hyperlink. Under Link to, click E-mail Address. Either type the email address that you want in the E-mail address box, or select an email address in the Recently used e-mail addresses list.

How do I open mailto links in Outlook 365?

Click Default apps. Click Choose default apps by protocol. Scroll down to MAILTO, and check what's the default app for this protocol. If the default app shows MAIL, click it, and check if Outlook will appear as an option.

How do I send an email from GMail to Office 365?

Sending Office 365 emails from GMailClick on the "Settings" icon (a gear in the top right corner). Choose the "Settings" submenu. Go to the "Accounts and Import" tab. There is a section "Send mail as" => click on "Add another email address".


1 Answers

Office 365 now supports composing an email using a URL:

https://outlook.office.com/?path=/mail/action/compose&[email protected]&subject=Customer Service Request&body=Add+Your+Request+here 

available parameters:

  • path /mail/action/compose
  • subject Customer Service Request
  • body Add your request here
  • to [email protected]
  • cc is not supported at this point.

See https://blogs.msdn.microsoft.com/carloshm/2016/01/16/how-to-compose-a-new-message-or-event-and-populate-fields-in-office365/#comment-1645 for more details

like image 129
moonpatrol Avatar answered Sep 21 '22 14:09

moonpatrol