Is there a way to create a link to an email on MAIL desktop (not web mail) - email

For Personal knowledge management (PKM), it would be useful to be able to get a link that opens a specific email (opening in the application MAIL, more precisely). I believe this is possible for online-based email systems like gmail. Would this be possible for desktop-based applications, like MAIL (Mac)? This would facilitate a lot PKM workflows. Thanks in advance!

Related

Send email from Google Workspace Catch All email

I’m currently using Apple Hide My Email to create random email addresses for each website I create an account on. I really like the privacy and spam control I can get from this feature, but the Apple email client is terrible, and the process to create a new email is also terrible, specially when I’m not on my iPhone.
I would love to simulate this whole experience using a catch-all email config through Google Workspace. However, I don’t think I would be able to reply to incoming emails using the same email address that I used to create the account.
Is there a way to send emails from the email addresses I’m creating through a catch-all config on Google Workspace? If not, would it be possible to simulate the experience I have with Apple’s Hide my Email on Google Workspace?

How to make the unsubscribe link in Outlook work for newsletters?

We send out email newsletters and automated confirmation emails to users of our websites. Each email has an unsubscribe link in the email footer and each recipient opted in to receive emails.
Outlook webmail has the unsubscribe link above the body of the email in the following form:
Getting too much email from #SENDER#? You can unsubscribe
Clicking on the link opens a dialog window with following content:
Block this sender
[SENDER] hasn't given us any information to help you unsubscribe, so we'll block everything sent from the following sender: [EMAIL_ADDRESS]
[×] Also delete everything from [SENDER] in my Inbox folder
I search the internet and even contacted the Outlook support and asked them what info they need from us to help recepients unsubscribe from our emails. After several email exchanges the Outlook support concluded that they have no idea how to change Outlook's unsubscribe link, what information we should give them and how we should give them the information.
Can anyone please advise or point me to the right direction please? Thanks.
Is it "List-Unsubscribe" MIME header? http://www.list-unsubscribe.com/
You're confusing a couple of things here. First, while outlook.com is a Microsoft domain, Outlook itself is an entirely different thing, and people can be using Outlook as their mail program regardless of what domain they have. You won't know what client people are using for email, or what server they use to access it. Second, you say that email communication is vital for your websites. Banning people from your newsletters doesn't help that situation in the least. People using the various Microsoft services that you mention have no trouble receiving and participating in those email communications. What you don't touch on, is what software you're using for your newsletters. THAT is where your problem probably is. If you go to that domain.com/unsubscribe URL, what does that page do/look like? There are 2 usual links for a List-Unsubscribe header. One is a mailto: link such as unsub-list-12345#domain.com, where any email to that address performs an unsubscription. For the web link version, it needs to be a link to a page that automatically unsubscribes the user (so the link would need to be customized with variables such as the mailing list).

Is there any way to access Yahoo IMAP with Oauth2 for new applications?

I'm looking for a way to allow Yahoo application to read user's emails over IMAP. It works well for old applications (that were created before Yahoo Mail API has deprecated), but trying to access IMAP for new applications gives me an error
[AUTHENTICATIONFAILED] (#AUTH007) Bad scope.
Unfortunately, I have no idea how to add a correct scope for accessing IMAP for new applications. During creation of the app, I was not given a choice to add scope with name even looking like 'mail'.
Is Yahoo API just broken or there is some tricky way to work around?
Contact imap-service#yahoo-inc.com
With your Yahoo.com email address and
Brief description of your product.
How will your product use Yahoo user's email content?
How will your product help Yahoo mail users?
What market do you serve?
What is your product's userbase?

automatic background email from iphone application to users

I am so confused. My simple requirement is: i have an application which contains confirmation form i.e. nib file. It contains some textFields like name, age, email etc. I simply want when somebody click on submit button application send background and automatic email to email defined in textField. that email contain all information like name, age etc. User need not to fil anything and it should work in background. There are so many application do the same thing. I am creating booking application.
So how can i impliment this behaviour.
Apple does not provide a way to do this - and for good reason. Sending emails from the phone automatically introduces a lot of security risks.
I am willing to bet that the apps that do this use an intermediary server to which they post the data. When the data is posted then the server handles the sending of the emails.
To do this:
Send an HTTPS POST request to your server application.
From your server application, send an email via SMTP (or APIs built on top of SMTP).
Google AppEngine provides a simple and cheap way to create such a web service, running on top of Google's cloud-computing infrastructure. The sending mail from AppEngine help document includes detailed examples of how to send mail from your server application (assuming you use the Python version of Google AppEngine).
Unfortunately, there is no official feature for this but you could download a third-party library. Refer here for a couple of suggestions.

Using Google Apps Email in CodeIgniter

How do I use Google Apps' email services to send mail using the CodeIgniter email class? The email class seems to prefer SMTP, and I was going through the clients Google Apps account. I can't find any place within the Google Apps settings for SMTP. Does anyone know of a solution for this issue?
Right you don't find it because CodeIgniter uses the "mail" PHP function.
For some reasons only the most drunken PHP core developer knows about - this function do not support SMTP and worse even the admin can't configure SMTP usuage on Unix (it is possible to do this on windows - making the PHP design look even more crazy).
There are a few SMTP libraries out there that can handle SMTP Email, just use them
http://pear.php.net/package/Mail
http://sourceforge.net/projects/phpmailer/
http://swiftmailer.org/
or the Email classes from the Zend Framework which are uncoupled from the rest so easy to use with CodeIgniter.
Here is a blog post detailing instructions:
http://joelg.info/sending-email-with-gmail-using-the-codeignite
Extract From link:
Why send email with Gmail rather than
the server's SMTP configuration? There
are a number of advantages I see for
doing this: Ability to develop locally
and test email sending functionality
without going to lengths to setup a
local mail server. Ability to utilise
Google Apps emails to send email from
emails which are on your own domain.
Ability to have a reference of the
mail you send using this method in the
"sent" folder on your Gmail account.