angelos3lex / react-native-smtp-mailer

Send emails by connecting to smtp server+attachments, using android javamail and ios mailcore2
39 stars 32 forks source link

MailCore.h import problem on case sensitive runner #35

Closed Reloflex closed 3 years ago

Reloflex commented 3 years ago

Building the package on a case sensitive runner fails with the error:

'Mailcore/Mailcore.h' file not found.

Solution (I will create a PR):

ios/RNSmtpMailer.m on line 4:

Instead of:
#import <Mailcore/Mailcore.h>

There should be:
#import <MailCore/MailCore.h>

angelos3lex commented 3 years ago

v1.2.3 includes this fix