我在使用CSmtp 类发送附件时遇到问题。
这是该链接上的代码:
int SendMail()
{
bool bError = false;
try
{
CSmtp mail;
#define test_gmail_tls
#if defined(test_gmail_tls)
mail.SetSMTPServer("smtp.gmail.com",587);
mail.SetSecurityType(USE_TLS);
#elif defined(test_gmail_ssl)
mail.SetSMTPServer("smtp.gmail.com",465);
mail.SetSecurityType(USE_SSL);
#elif defined(test_hotmail_TLS)
mail.SetSMTPServer("smtp.live.com",25);
mail.SetSecurityType(USE_TLS);
#elif defined(test_aol_tls)
mail.SetSMTPServer("smtp.aol.com",587);
mail.SetSecurityType(USE_TLS);
#elif defined(test_yahoo_ssl)
mail.SetSMTPServer("plus.smtp.mail.yahoo.com",465);
mail.SetSecurityType(USE_SSL);
#endif
mail.SetLogin("email@email.com");
mail.SetPassword("password");
mail.SetSenderName("");
mail.SetSenderMail("email@email.com");
mail.SetReplyTo("");
mail.SetSubject("Subject");
mail.AddRecipient("email@email.com");
mail.SetXPriority(XPRIORITY_NORMAL);
mail.SetXMailer("The Bat! (v3.02) Professional");
mail.AddMsgLine("Hello,");
mail.AddMsgLine("you have been successfully registered!");
mail.AddMsgLine(" ");
mail.AddMsgLine("Username: ");
mail.AddMsgLine("Password: ");
mail.AddMsgLine(" ");
mail.AddMsgLine("See ya!");
mail.AddAttachment("C:\\Users\\Jenda\\AppData\\Roaming\\text.dat");
mail.Send();
}
catch(ECSmtp e)
{
std::cout << "Error: " << e.GetErrorText().c_str() << ".\n";
bError = true;
}
if(!bError)
std::cout << "Registration E-Mail was sent on given address.\n";
return 0;
}
当我评论附件行时,它成功发送了电子邮件。但是当我尝试发送该附件时,它似乎只是停在那里并且什么都不做 - 它不会返回任何错误或任何东西。它什么也不做(它正在响应——根据任务管理器,你知道)。
另外,这是一个次要问题:您看到附件路径 (C:\Users\Jenda\AppData\Roaming\text.dat) 了吗?该程序如何获取有关用户(名称)的信息,以及我如何将其添加到路径中以便它在每台计算机上运行。C:\用户\ WINDOWS用户名\ ...
就是这样,感谢您的所有回复和想法。
PS 我使用的是 Windows7 32 位和 Visual c++ Express 2010。