git sendmail 回复已有的邮件信息说明
时间: 2023-07-23 16:18:12 浏览: 158
使用 git send-email 命令时,如果要回复已有的邮件信息,可以使用以下步骤:
1. 打开你想要回复的邮件,将邮件内容复制到一个文件中。
2. 用文本编辑器打开该文件,将邮件头部信息中的 "From:", "To:", "Subject:", "Date:", "Cc:", "Bcc:" 等相关信息复制到你要发送的邮件信息中。
3. 在邮件头部信息中添加 "In-Reply-To:" 和 "References:",并将该邮件的 Message-ID 复制到这两个字段中。这样可以连接到原始邮件线程。
4. 在邮件的内容中写下你要回复的内容。
5. 使用 git send-email 命令来发送邮件。
示例:
```
From: Your Name <your_email@example.com>
To: recipient_email@example.com
Subject: Re: Your Subject
Date: Thu, 12 Sep 2019 15:14:15 -0700
Cc: another_email@example.com
In-Reply-To: <original_message_id@example.com>
References: <original_message_id@example.com>
你要回复的内容。
```
其中,"original_message_id@example.com" 是原始邮件的 Message-ID,你需要将其替换为实际的 ID。
阅读全文