Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

NOTE

  • Since a QR code cannot be empty, in the case of empty content the text "no content" is set.

  • Caution is required with vCards, because even with small distances or not adhering to specifications, cell mobile phone readers cannot read the QR code.

...

Code Block
languagexml
<QRCode id="TextWithData" type="dynamic">Hello, my name is {Profile.User.FirstName} {Profile.User.LastName}.</QRCode>
<QRCode id="vCard" height="300" type="dynamic">BEGIN:VCARD
VERSION:3.0
N:{Profile.User.LastName};{Profile.User.FirstName}
FN:{Profile.User.FirstName} {Profile.User.LastName}
ORG:{Profile.Org.Title}
TITLE:{Profile.User.Title}
TEL;TYPE=WORK,VOICE:{Profile.User.Phone}
TEL;TYPE=HOME,VOICE:{Profile.User.Phone2}
ADR;TYPE=WORK:;;{Profile.Org.Postal.Street};{Profile.Org.Postal.City};;{Profile.Org.Postal.Zip};{Profile.Org.Postal.Country}
EMAIL;TYPE=PREF,INTERNET:{Profile.User.Email}
URL:{Profile.Org.Web}
REV:2015-03-31T08:30:10Z
END:VCARD
</QRCode>
Note

ATTENTION:
No indentations may be made in the code! (The data will not be found otherwise.)