X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/decb3a6a16ea5acf1dfcdb1b70cb6edaa09840c0..3527f29c8769e09d796c547c0c309f8b86407012:/contrib/src/net/email.cpp diff --git a/contrib/src/net/email.cpp b/contrib/src/net/email.cpp index a4b9c44aaa..8fe6fa98f9 100644 --- a/contrib/src/net/email.cpp +++ b/contrib/src/net/email.cpp @@ -31,11 +31,19 @@ #include "wx/net/smapi.h" #endif +#ifdef __UNIX__ +#include "wx/filefn.h" +#include "wx/timer.h" +#include "wx/wfstream.h" +#include "stdlib.h" +#include "unistd.h" +#endif + // Send a message. // Specify profile, or leave it to wxWindows to find the current user name #ifdef __WXMSW__ -bool wxEmail::Send(wxMailMessage& message, const wxString& profileName) +bool wxEmail::Send(wxMailMessage& message, const wxString& profileName, const wxString& WXUNUSED(sendMail)) { wxASSERT (message.m_to.GetCount() > 0) ; @@ -52,6 +60,64 @@ bool wxEmail::Send(wxMailMessage& message, const wxString& profileName) return session.Send(message); } +#elif defined(__UNIX__) +bool wxEmail::Send(wxMailMessage& message, const wxString& profileName, const wxString& sendMail) +{ + wxASSERT (message.m_to.GetCount() > 0) ; + + // The 'from' field is optionally supplied by the app; it's not needed + // by MAPI, and on Unix, will be guessed if not supplied. + wxString from = message.m_from; + if (from.IsEmpty()) + { + from = wxGetEmailAddress(); + } + + wxASSERT (!from.IsEmpty()); + + wxString msg; + msg << wxT("To: "); + + size_t i; + for (i = 0; i < message.m_to.GetCount(); i++) + { + msg << message.m_to[i]; + if (i < message.m_to.GetCount()) + msg << wxT(", "); + } + + msg << wxT("\nFrom: ") << from << wxT("\nSubject: ") << message.m_subject; + msg << wxT("\n\n") << message.m_body; + + wxString filename; + filename.Printf(wxT("/tmp/msg-%ld-%ld-%ld.txt"), (long) getpid(), wxGetLocalTime(), + (long) rand()); + + { + wxFileOutputStream stream(filename); + if (stream.Ok()) + { + stream.Write(msg, msg.Length()); + } + else + { + return FALSE ; + } + } + + // TODO search for a suitable sendmail if sendMail is empty + wxString sendmail(sendMail); + + wxString cmd; + cmd << sendmail << wxT(" < ") << filename; + + // TODO: check return code + wxSystem(cmd.c_str()); + + wxRemoveFile(filename); + + return TRUE; +} #else #error Send not yet implemented for this platform. #endif