是否可以只向一个人发送电子邮件,但在收件人字段中添加更多电子邮件地址(这些用户不应收到电子邮件)?

Is it possible to send email just to one person but in the TO field to add more email addresses(these users should not get an email)?

我想做的是,向一个人发送一封电子邮件,但我想在收件人字段中添加更多电子邮件地址,并且不希望该用户收到电子邮件。是否可以以某种方式配置它?

是的,这是完全可能的。 SMTP 实际上并没有将 headers 用于任何事情;信封收件人列表控制实际接收邮件的人(尽管许多 user-visible 电子邮件程序只会将 To:Cc:Bcc: headers 复制到信封中提交时)。

因为您没有询问任何特定的语言,所以我不会 post 可能对您毫无用处的代码。在伪代码中,类似于

s = smtp.connect(server)
s.ehlo()
s.from(envelope.sender)
for r in envelope.recipients:
    s.rcpt(r)
s.data('''From: me@example.net
To: you@example.org
Subject: SMTP doesn't care

By the time SMTP transmits the actual message,
the recipient information has already been sent 
separately.''')