Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

create QR code to send email on both iPhone and Android

I am trying to create a business card with a QR code that someone can scan and write an email to me. I want the QR code to pre-populate my email address and the subject. I tried the solution in this post (this post is the best one that I found):

http://www.labnol.org/internet/email-with-qr-code/19610/

I encountered a couple of problems - On the iPhone, the reader (QRReader app) just opens the MATMSG in plain text (I want the email client to open with the text populated). In Android (using the bar code scanner), it creates a new email but without the text or subject.

Is there any QR code solution that can get the clients to open their email client with my email address and subject populated at a minimum (for both iOS and Android devices)?

like image 753
user709903 Avatar asked Dec 19 '11 12:12

user709903


People also ask

Do QR codes work for both Apple and Android?

To scan a QR Code, point your smartphone's camera at a QR Code and click on the notification URL that pops up. This works with both Android phones running on Android 8 and higher and iPhones (iOS 11 or higher).

How do I create a QR code for iOS and Android?

On Android, tap the three-dot menu, Share, then QR Code to generate a code for a page. In Chrome on iOS, similarly browse as normal to a web page, tap the Share symbol, then scroll down a bit in the displayed options and tap Create A QR Code (Figure C).

Can you create a QR code to send an email?

You can create a QR code for an email address that redirects scanners to your email ad when they scan your QR code. This allows them to send you a message instantly. But did you know that using QR codes is one of the trendiest ways as well to upgrade your email marketing game?

Can one phone have two QR codes?

Well, they are for both and you don't need to put them separately everywhere to accommodate different users. Through these URLs, with multi directions, one QR code can redirect according to the user's smartphone device. You can also track the data of your Multi URL QR code as this type of code is dynamic.


3 Answers

Sean Owen is exactly correct. But let me also add a couple of notes. First, not all email clients will provision all of the fields. Second, do use a URL shortener before converting to a QR code. A simple QR code with nice, big blocks will look better and scan more easily. The first URL shortener I found that works with mailto: links is TinyURL.

So, just to be really explicit, your work flow looks like this:

mailto:your@address?subject=Hello%20there&body=You%20are%20hired

Paste that URL into TinyURL and get the short URL.

Paste the short URL into Create QR Codes and get the QR code.

like image 55
Sparky Avatar answered Oct 15 '22 05:10

Sparky


The correct syntax is:

mailto:[email protected]?subject=bar&body=baz

Barcode Scanner supports this and hopefully iOS readers do too, but, this is really all you can and need to do on the encoding side, regardless.

like image 27
Sean Owen Avatar answered Oct 15 '22 06:10

Sean Owen


I too was having trouble with the iPhone wanting to save the email address as a contact.

I found a site that generates the sort of QR code I was after, tested it to check if it worked (which it did) and then 'reverse engineered' it to see the raw source code.

The syntax is as follows:

MATMSG:TO:[email protected];SUB:The subject;BODY:The body;;

Hope this helps someone out there :)

like image 38
Izgot Flame Avatar answered Oct 15 '22 04:10

Izgot Flame