发送HTML电子邮件和HTML邮件

发送HTML电子邮件和HTML邮件

问题描述:

如何在c ++中发送带有附件的HTML电子邮件和邮件。我在哪里可以获得示例代码。

请将它用于客户端/服务器应用程序。

How can one send HTML Email and mail with attachment in c++.Where can I get sample codes.
Pls I need it for a client/Server Application.

您要查找的内容称为 SMTP客户端 [ ^ ] 。我已经为我的公司内部编写了几个(源代码不可用),但这些很常见。



你将遇到的一个问题是邮件中继有点这些天锁定了,您可能需要从可能的默认设置中执行其他授权和安全步骤。如果可能,您还希望使用SSL和/或TLS选项,并且不要以明文形式发送密码信息。
What you want to look for is called an SMTP Client[^]. I have written several for use internally for my company (source not available) but these are fairly common.

One of the issues you will encounter is that mail relays are somewhat locked down these days, and you will likely need to do additional authorization and security steps from what are the likely default settings. If possible, you also want to use SSL and/or TLS options and don't send password info in clear text.