-
-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
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
feat: Update ngx-vcard.formatter.ts #724
base: master
Are you sure you want to change the base?
Conversation
add code to enforce ANSI compatibility to work correctly with outlook
Thanks for the PR, but which characters are misrepresented in Outlook? |
The proble is that outlook doesnt read special characters like á é í ó ú if the file is saved in utf-8, the only way they display correctly is if the file is saved in ANSI, this PR do that, and it doesnt afect others imports, like import it in iphone, android devices or even in contacts in mac, the only afecteds are outlook and windoes contacts |
I think we might have to make this optional and add-in, as it not adhering to the RFC: https://datatracker.ietf.org/doc/html/rfc6350#section-3.1 One other thing you might try is set the encoding option in outlook or in the vcard (via |
None of that works the only solution is re-encoding all the vcard to ansi in wich case afther generating the vCard string you have to use the code i added to do it (I have to generate the vCard string and afther re encode all to ansi to generate the downloadable file and in that process i cannot use the directive from this package) |
add code to enforce ANSI compatibility to work correctly with outlook