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

can we use different username and from user while sending the mail #58

Open shivanihexalytics opened 2 months ago

shivanihexalytics commented 2 months ago

I want to send mail from different usename and from user for example I want to send mail from test@abcd.com but on receiver side it will show fromname .so is it possible?

RNSmtpMailer.sendMail({
          mailhost: "smtp-relay.brevo.com",
          port: "***",
          ssl: false, 
          username: "test@abcd.com",
          password: "Test@1234",
          recipients: 'vivek@breawd.com',
          fromName: 'vivek'
          subject: subjectText,
          htmlBody: htmlEmailBody,
          attachmentPaths:attachmentPaths,
          attachmentNames: attachmentNames,
        })