I have a email CGI from a very old cgi for the days when "revolution" was the 
server

Now with LiveCode server, Ubuntu 18+  does have 

/usr/sbin/sendmail

installed, at least I see that, but this old process does not work

put "/usr/sbin/sendmail -t" into mprocess
open process mprocess for write
        write "From:" && (urlDecode (tDataIn["from"]))& cr to process mprocess
        write "To:" &&   tRecipients  &  cr to process mprocess
        write "Subject:" &&   (urlDecode (tDataIn["subject"]))   &  cr & cr to 
process mprocess
        write    (urlDecode (tDataIn["body"])) &  cr to process mprocess
close process mprocess   
if the result is not empty then 
     put the result into tResponse
else 
    put tResponse
end if

I think we don't use "open process" anymore. What is the LiveCode server method 
now?

BR


_______________________________________________
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

Reply via email to