Send email: Difference between revisions

423 bytes added ,  14 years ago
Added PicoLisp
m (→‎PureBasic: fixed Purebasic -> PureBasic)
(Added PicoLisp)
Line 235:
=={{header|PHP}}==
<lang php>mail('hello@world.net', 'My Subject', "A Message!", "From: my@address.com");</lang>
 
=={{header|PicoLisp}}==
PicoLisp has a built-in '[http://software-lab.de/doc/refM.html#mail mail]'
function. A minimal call would be
<lang PicoLisp>(mail "localhost" 25 "me@from.org" "you@to.org" "Subject" NIL "Hello")</lang>
Instead of "Hello" an arbitrary number of arguments may follow (possibly
containing executable expressions) for the message body.
 
The 6th argument (here 'NIL') may specify a list of attachments.
 
=={{header|Pike}}==
Anonymous user