Lauching Lotus Notes with mailto: - url

I have a mailto url in a web page. The target system contains both Microsoft Outlook and Lotus Notes. Microsoft Outlook is the default Mail Client. So when i click on mailto link it opens up Microsoft Outlook.
I want it to open Lotus Notes when i click on the link and i do NOT want change the default mail client settings in Internet Options as well. Please suggest a solution or work around to achive this.

You can use a notes:// style URL, which will work for users with recent versions of the Notes client installed. This URL format can be used to launch a database (or open a known document in a database) whose file path is known. Unfortunately, for creating an email document in the current user's mailbox, the NSF path will be different for each user. But there is a technique you can use, if you have a Notes server in your environment. You can have the link on your page actually link to a static Notes database, which has an "OnDatabaseOpen" event handler set up to look up the user's mailbox path, and then redirect the user there. It's a few steps - not as simple as a mailto: URL - but if you are desperate, it can be made to work.

You can use this URL to open Notes and a new memo: Notes:///0000000000000E00/Memo?OpenForm
source: http://www-10.lotus.com/ldd/dominowiki.nsf/dx/notes-urls
This however does not solve the problem of filling out the To address, Subject, etc.

A mailto link is always going to use the default mail app. You may be able to use a lotus notes shortcut and pass the email address as arguments.

Related

Is there a way to use the "ms-outlook://" URI in iOS to open a specific email message by id?

I am attempting to create a QR code that opens a specific email message in the Outlook App for iOS.
I am specifically looking for something like:
ms-outlook://messages/view?id=1dfffe43-0d4e-4130-467e-08d5b4ee98bd
I have tried a lot of different combinations with no luck...
I am already aware of the "ms-outlook://compose" URI schema referenced here:
URL Scheme Attachment Microsoft Outlook app
I have already successfully pulled this off with trello, workfront, and zendesk. Just want to add outlook to the list.
Examples I have working with other apps:
Trello:
trello://x-callback-url/showCard?shortlink=h836Wd8k
Zendesk:
zendesk://agent/tickets/35436
Workfront:
workfront://TASK?ID=564f71b200d4b8f4a393335ed5a816c1
Any help is appreciated!

Open draft from link with Gmail API in browser

I'm trying to directly open a Gmail draft message, I've tried using a hyperlink formatted like this:
"https://mail.google.com/mail/#drafts?compose=" + idDraft
However, every time I open the draft message the link takes me to the Draft List. Is it possible with the link or do I have to look for an alternative option?

Slack URL to open a channel from browser

This iTunes URL will open The Hitchhiker's Guide to the Galaxy in your iTunes:
itmss://itunes.apple.com/us/audiobook/hitchhikers-guide-to-galaxy/id315596797
This Spotify URL will open ALL by the Descendents in Spotify:
spotify:track:22feF2sbtGydtvx1OeLSih
Does Slack have a URL scheme to open a #channel in the Slack app from a link?
I want to put a link on my team's site that can link to the Slack #channel we use, for use by other people in the company.
Referencing a channel within a conversation
To create a clickable reference to a channel in a Slack conversation, just type # followed by the channel name. For example: #general.
To grab a link to a channel through the Slack UI
To share the channel URL externally, you can grab its link by control-clicking (Mac) or right-clicking (Windows) on the channel name:
The link would look like this:
https://yourteam.slack.com/messages/C69S1L3SS
Note that this link doesn't change even if you change the name of the channel. So, it is better to use this link rather than the one based on channel's name.
To compose a URL for a channel based on channel name
https://yourteam.slack.com/channels/<channel_name>
Opening the above URL from a browser would launch the Slack client (if available) or open the slack channel on the browser itself.
To compose a URL for a direct message (DM) channel to a user
https://yourteam.slack.com/channels/<username>
Sure you can:
https://<organization>.slack.com/messages/<channel>/
for example:
https://tikal.slack.com/messages/general/ (of course that for accessing it, you must be part of the team)
The URI to open a specific channel in Slack app is:
slack://channel?id=<CHANNEL-ID>&team=<TEAM-ID>
You will probably need these resources of the Slack API to get IDs of your team and channel:
GET https://slack.com/api/team.info
GET https://slack.com/api/channels.list?exclude_archived=1
Here's the full documentation from Slack
This link opens the channel in the browser
https://<org-name>.slack.com/channels/<channel-name>
This link opens up the slack channel in the App
https://<org-name>.slack.com/archives/<channel-name>
You can use
slack://
in order to open the Slack desktop application.
For example, on mac, I've run:
open slack://
from the terminal and it opens the Mac desktop Slack application.
Still, I didn't figure out the URL that should be used for opening a certain team, channel or message.
When I tried yorammi's solution I was taken to Slack, but not the channel I specified.
I had better luck with:
https://<organization>.slack.com/messages/#<channel>/
and
https://<organization>.slack.com/messages/<channel>/details/
Although, they were both still displayed in a browser window and not the app.

custom url schemes in twitter posts it does not work

I am an ios app developer. We have implemented a custom URL scheme 'my_app://section_name' or so where if the link is opened in the user's mobile browser, it will redirect the user to a specific section in the app.
We would like to be able to tweet these URLs and have users on their mobile device click on them to open up the app, however it just can click once
(when you click close , maybe you click wrong then you want to click it second but it does not work )
I hope this isn't too silly of a question. Thanks
Make sure to check the tweet body after it have been posted.
This may be due of an URL shortener, especially if the tweet is posted from the iOS 5 Twitter framework.
I'm having a similar issue with url schemes. We can include them in emails and text messages, and they highlight and work properly.
Unfortunately, when we do the same with a tweet, the iOS Twitter client fails to recognise the special URL scheme and so the user cannot tap on it to open our app.
Pretty big oversight, methinks. Anyone else had any joy including special URL scheme links in tweets?
A solution that you should consider involves not sharing the URI scheme directly, but rather creating a page on your web server to handle this. In fact, if you want to be able to share full URI schemes with paths, you're better off building a web server to dynamically generate a page with a URI scheme redirect.
This is a over-simplified representation of what we built at Branch. This includes some code to get you started though the web server will require a bit of setup not described here.
instead of testapp://some.data.here, you'll link to http://yoursite.com/hosted-redirect/some.data.here.
your server should listen at the route /hosted-redirect, grab some.data.here and build the following page (body here):
(source: derrrick.com)
So your server will have to generate and respond with this page, filling in some.data.here, anytime http://yoursite.com/hosted-redirect/some.data.here is requested.
A lightweight node app could do this with a single file.

Link on Facebook with custom prefix/protocol (like myapp://blahblah)

I added to my iOS application option to detect and response to custom URL schemes to launch application ( http://iosdevelopertips.com/cocoa/launching-your-own-application-via-a-custom-url-scheme.html ).
Link is working perfectly on different sites (using href), but I'm having problem with Facebook. If I'm trying to post link (using Graph API) which looks like:
myapp://blabla
Facebook return error:
The url you supplied is invalid
And for feed with link return
link URL is not properly formatted.
I can't just post url as a message because it's not being detected as a URL and appear like text only.
Is there any way to post to Facebook wall with custom links?
Edit:
I have an idea, but I don't know if it gonna work. Putting
myapp://blabla directly into address field in mobile browser is launching application so probably accessing an webpage (like http://www.mywebpage/myapp) with only redirection to
myapp://blabla gonna work too, but is Facebook gonna accept that link?
I think your suggestion in the edit is the correct method, and should work. However applications like spotify seem to use an intersticial page which fires the "app link" with javascript, the advantage to this approach is that you can use that page to "sell" the app to users who don't have it and also provide lovely open graph tags for people who want to share it.

Resources