react-native-mail icon indicating copy to clipboard operation
react-native-mail copied to clipboard

Attach PDF from base64 URI?

Open niharikaprasad opened this issue 4 years ago • 2 comments

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 avatar Aug 05 '20 09:08 niharikaprasad

@niharikaprasad were you able to achieve this?

evansendra avatar Apr 26 '22 20:04 evansendra

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

evansendra avatar Apr 26 '22 21:04 evansendra