C++ (Qt) jwsmtp::mailer m("tome@gmail.com", "fromme@gmail.com", "bugreport", "Hello", "localhost", jwsmtp::mailer::SMTP_PORT, false); // аттач m.attach("/tmp/report.txt"); // отправка m.send(); QString response = m.response().c_str(); if(response.startsWith("250")) qDebug("Success"); else qDebug("Failed");