我正在将EmailJs整合到我的Mern stack应用程序中。我可以通过代码改变我的收件人地址吗?目前,它正在发送邮件到我在EmailJs上开户的地址,我想发送邮件到我在运行时写的地址。我想发送邮件到我在运行时写的地址。
const variables = {
message_html: 'message',
from_name:'name',
reply_to: "[email protected]"
}
window.emailjs.send(
'gmail',
templateId,
variables
).then(res => {
console.log('Email successfully sent!')
})
// Handle errors here however you like, or use a React error boundary
.catch(err => console.error('Oh well, you failed. Here some thoughts on the error that occured:', err))
不,EmailJs似乎不支持发送任意邮件地址,你必须要 连接您自己的电子邮件服务 来接收邮件。