简体   繁体   English

多个电子邮件帐户作为发件人

[英]multiple email accounts as sender

How to send an email from multiple email accounts at the same time to a single account?如何同时从多个电子邮件帐户向一个帐户发送电子邮件? Means we can enter more than one email address in the from section of new email window.意味着我们可以在新电子邮件窗口的发件人部分输入多个电子邮件地址。

The Simple Mail Transfer Protocol (SMTP) don't allow for multiple FROM addresses or at least you can do what you want but the SMTP relay server will most likely return a 5xx code (Error).简单邮件传输协议 (SMTP) 不允许多个 FROM 地址,或者至少您可以做您想做的事,但 SMTP 中继服务器很可能会返回 5xx 代码(错误)。

As mentioned in your comment section, you can take use of the "Reply-To" header.正如您的评论部分所述,您可以使用“回复”标题。 This is what will be used when clicking reply by the receiver if the E-Mail client supports it.如果电子邮件客户端支持,接收者单击回复时将使用此选项。 It's used typically in simple group message setups that don't have fully functional lists etc.它通常用于没有完整功能列表等的简单组消息设置。

If you want to use the Reply-To header with multiple e-mail addresses your want to separate them with the expected delimiter that your SMTP server supports.如果您想对多个电子邮件地址使用 Reply-To 标头,您需要使用 SMTP 服务器支持的预期分隔符将它们分开。 Most common is either "comma" or "semicolon".最常见的是“逗号”或“分号”。

Eg例如

Reply-To: email1@dom.tld, email2@dom.tld, email3@dom.tld

I hope you get it worked out, but short answer is "NO" - SMTP don't support multiple FROM addresses.我希望你能解决这个问题,但简短的回答是“否”——SMTP 不支持多个 FROM 地址。 It also don't make sense to do so as the original sender can always only be one source :)这样做也没有意义,因为原始发件人始终只能是一个来源:)

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM