使用现有电子邮件的内容创建新电子邮件
我没有任何 VBA 经验,想了解如何实现这一点。 我喜欢将我正在阅读的打开的电子邮件转换为我想要发送的新电子邮件格式。
我该怎么办?
示例:
From: Banana, Man
Sent: Thursday, November 17, 2011 4:31 PM
To: Fong, Gordon;
Cc: ABC, 123
Subject: Re: This is the Subject
Body:
Hello world
要发送的新电子邮件草稿:
To: [email protected] ;
Subject: new
Body:
Summary: Re: This is the Subject
Assign: ABC, 123 (prerably the email associated from this)
Comment: [BEGINLINES]
From: Banana, Man
Hello world
[ENDLINES]
I don't have any experience in VBA and would like to understand how to accomplish this.
I like to transform the open email i'm reading to change into a new email format I would like to send.
How do I go about this?
Example:
From: Banana, Man
Sent: Thursday, November 17, 2011 4:31 PM
To: Fong, Gordon;
Cc: ABC, 123
Subject: Re: This is the Subject
Body:
Hello world
New Draft Email to send out:
To: [email protected] ;
Subject: new
Body:
Summary: Re: This is the Subject
Assign: ABC, 123 (prerably the email associated from this)
Comment: [BEGINLINES]
From: Banana, Man
Hello world
[ENDLINES]
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您想要更改电子邮件的“发件人”、“收件人”、“抄送”、“已发送”和“主题”行的物理顺序或外观,则无法使用 VBA 执行此操作。您需要(重新)设计电子邮件表单的编辑页面。请参阅
如果您有其他意思,请更新您的问题。
If you mean you want to change the physical order or appearance of the From, To, Cc, Sent and Subject lines of the email, you cannot do this using VBA. You would need to (re)design the Edit page of the email form. See
If you meant something else please update your question.