Send email: Difference between revisions

Content added Content deleted
(Added PicoLisp)
Line 258: Line 258:


=={{header|PureBasic}}==
=={{header|PureBasic}}==
<lang Purebasic>
<lang Purebasic>InitNetwork()
InitNetwork()


CreateMail(0, "from@mydomain.com", "This is the Subject")
CreateMail(0, "from@mydomain.com", "This is the Subject")
Line 273: Line 272:
Else
Else
MessageRequester("Error", "Can't sent the mail !")
MessageRequester("Error", "Can't sent the mail !")
EndIf
EndIf</lang>
</lang>


=={{header|Python}}==
=={{header|Python}}==