You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
in Android we are able send email to multiple recipients by passing value in To parameters as '[email protected],[email protected]'
but in iOS it's only allowing to send email to one recipient
So if possibles add support for iOS . So we can send email to multiple recipients
const sendLogFilesByEmail = () => {
FileLogger.sendLogFilesByEmail({
to: '[email protected],[email protected]',
subject: 'Log files',
body: 'Please find attached the log files from your app',
});
};
The text was updated successfully, but these errors were encountered:
in Android we are able send email to multiple recipients by passing value in
To
parameters as'[email protected],[email protected]'
but in iOS it's only allowing to send email to one recipient
So if possibles add support for iOS . So we can send email to multiple recipients
The text was updated successfully, but these errors were encountered: