retroforth/example/mail.retro
crc 848ba7303b use .retro instead of .forth in examples
FossilOrigin-Name: b5feea667d30aac255d1cfca61fed355d438d2ce6021677f1e53af6302b15eee
2019-08-20 18:46:40 +00:00

17 lines
371 B
Forth

This is a tiny wrapper over the `mail` application to allow
sending emails from within RETRO.
~~~
:mail:send (sss-)
swap 'mail_-s_"%s"_%s s:format file:W unix:popen
swap [ over file:write ] s:for-each unix:pclose ;
~~~
# Send a Message
```
(Body 'This_is_a_test\n\nSending_mail_via_RETRO s:format
(Subject 'Test
(Recipient 'crc@forthworks.com
mail:send
```