> Did anyone here is able to send email using sendmail in On-Rev, my code that
> I use everywhere is not working anymore, somehow it can't open the sendmail
> process.
>
> function sendMail pFrom, pTo, pSubject, pBody
>
>  switch the platform
>  case "Linux"
>    put "/usr/sbin/sendmail -t" into mprocess
>    open process mprocess for write
>    write "From:" && pFrom & crlf to process mprocess
>    write "To:" &&   pTo  &  crlf to process mprocess
>    write "Subject:" &&  pSubject  &  crlf & crlf to process mprocess
>    write   pBody &  crlf to process mprocess
>    close process mprocess
>    wait until mprocess is not among the lines of the openprocesses
>    return the result
>    break
>
>  end switch
>
> end sendMail


I'm using mail, not sendmail directly and I'm on the odin server and
it's working fine there.
You can test it out & see my scripts at
<http://www.troz.net/onrev/samples/form.irev>.
I got the mail routines from splash21's site originally.

Cheers,
Sarah
_______________________________________________
use-revolution mailing list
[email protected]
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution

Reply via email to