mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 06:05:58 -06:00
17 lines
425 B
C++
17 lines
425 B
C++
#include <Web/Web.h>
|
|
|
|
using namespace Upp;
|
|
|
|
CONSOLE_APP_MAIN
|
|
{
|
|
SmtpMail mail;
|
|
mail.To("cxl@ntllib.org");
|
|
mail.Host("out.smtp.cz");
|
|
mail.Auth("cxl@ntllib.org", LoadFile("U:/smtp.txt"));
|
|
mail.Text("<h2>Hello!</h2><p>This is test of SMTP mail capabilities!", "text/html");
|
|
mail.From("cxl@ntllib.org");
|
|
mail.Subject("SmtpMail test");
|
|
mail.Send();
|
|
DDUMP(mail.GetError());
|
|
DDUMP(mail.GetTranscript());
|
|
}
|