React unable to send email with SendGrid
问题 I am using react to send emails: const sgMail = require('@sendgrid/mail'); sgMail.setApiKey(process.env.REACT_APP_SENDGRID); const msg = { to: 'test@example.com', from: 'test@example.com', subject: 'Sending with SendGrid is Fun', text: 'and easy to do anywhere, even with Node.js', html: '<strong>and easy to do anywhere, even with Node.js</strong>', }; sgMail.send(msg); But I got the following error: Access to fetch at 'https://api.sendgrid.com/v3/mail/send' from origin 'http://localhost:3000'