react-native-mail
react-native-mail copied to clipboard
can't attach empty file
Getting an error can't attach the empty file. How to solve this issue below my code
Mailer.mail({
subject: 'need help',
recipients: ['[email protected]'],
body: 'A Bold Body',
isHTML: true,
attachment: {
path: RNFS.DocumentDirectoryPath + '/Log.txt',
type: 'txt',
name: 'log',
}
}, (error, event) => {
});
}
I met the same issue on Android, do you have any update?