react-native-mail
react-native-mail copied to clipboard
Attach PDF from base64 URI?
I am working on making a React app and send email via frontend only. I don't mean to use backend api such as nodemailer. Hence I need react native solution. In attachments, can I add base64 string, instead of the path?
@niharikaprasad were you able to achieve this?
Oh I was able to do it just by adding
...
attachments: {uri: MY_BASE64_URI, type: 'pdf', name: 'myname.pdf'}
...
But without name and just the uri, it threw an error