react-native-mail
react-native-mail copied to clipboard
file extension dont found in ios
in ios doesnt work file extension.
and this is my code
I am facing the same issue. I can't see the extension on iOS
@agudeluca I found solutions.
here is my code.
Mailer.mail (
{
subject: 'need help',
recipients: [''],
ccRecipients: [''],
bccRecipients: [''],
body: '<b>Here is body</b>',
isHTML: false,
attachment: {
path: path,
type: 'pdf',
name: 'help.pdf',
},
},
(error, event) => {
console.log(error)
}
);
};
Thanks @MobileDev418 . You save my all day.