使用 SendGrid 中的“reply_to”。
https://sendgrid.com/docs/for-developers/sending-email/api-getting-started/#send-your-email-using-the-api
curl --request POST \
--url https://api.sendgrid.com/v3/mail/send \
--header 'Authorization: Bearer <<YOUR_API_KEY>>' \
--header 'Content-Type: application/json' \
--data '{"personalizations":[{"to":[{"email":"john.doe@example.com","name":"John Doe"}],"subject":"Hello, World!"}],"content": [{"type": "text/plain", "value": "Heya!"}],"from":{"email":"sam.smith@example.com","name":"Sam Smith"},"reply_to":{"email":"sam.smith@example.com","name":"Sam Smith"}}'
- 设置
reply_to
为“a@example.com”。
- “a@example.com”是您拥有和控制的真实电子邮件地址,不是 SendGrid 的一部分。设置该帐户以转发发送给它的电子邮件以自动转发到“b@example.com”。