We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug Encoding problem in address field
To Reproduce create a VCard with german Umlaute in name and address
public vCard: VCard = { name: { firstNames: 'John', lastNames: 'Dürrer' } , address: [ { street: 'Königstraße', locality: 'Lüneburg', postalCode: '11111', }, ]};
<button id="downloadButtonNormal" [vcdDownloadVCard]="vCard" [encoding]="vCardEncoding.utf8" > Download VCard!
Generated vcf file contains:
BEGIN:VCARD VERSION:4.0 FN;CHARSET=utf-8:John Dürrer N;CHARSET=utf-8:Dürrer;John;;; ADR:;;Königstraße;Lüneburg;;11111;
...
which is shown in Outook as
Königstraße
11111 Lüneburg
The name is shown correctly
Expected behavior address field should have encoding prefix
ADR;CHARSET=utf-8:;;Königstraße;Lüneburg;;11111;
Desktop
Thanx
Ana
The text was updated successfully, but these errors were encountered:
This issue is stale because it has been open at least 30 days with no activity. Comment or this issue will be closed in 14 days.
Sorry, something went wrong.
This issue was closed because it has been stalled for 14 days with no activity.
No branches or pull requests
Describe the bug
Encoding problem in address field
To Reproduce
create a VCard with german Umlaute in name and address
public vCard: VCard = { name: { firstNames: 'John', lastNames: 'Dürrer' } ,
address: [
{
street: 'Königstraße',
locality: 'Lüneburg',
postalCode: '11111',
},
]};
<button
id="downloadButtonNormal"
[vcdDownloadVCard]="vCard"
[encoding]="vCardEncoding.utf8"
>
Download VCard!
Generated vcf file contains:
BEGIN:VCARD
VERSION:4.0
FN;CHARSET=utf-8:John Dürrer
N;CHARSET=utf-8:Dürrer;John;;;
ADR:;;Königstraße;Lüneburg;;11111;
...
which is shown in Outook as
Königstraße
11111 Lüneburg
The name is shown correctly
Expected behavior
address field should have encoding prefix
ADR;CHARSET=utf-8:;;Königstraße;Lüneburg;;11111;
Desktop
Thanx
Ana
The text was updated successfully, but these errors were encountered: