Send email: Difference between revisions

Content added Content deleted
No edit summary
No edit summary
Line 1,110: Line 1,110:
=={{header|REXX}}==
=={{header|REXX}}==
There is a REXX program to send email via REXX, &nbsp; I'm trying to locate the author to get permission to include it here on Rosetta Code. <br><br>
There is a REXX program to send email via REXX, &nbsp; I'm trying to locate the author to get permission to include it here on Rosetta Code. <br><br>

=={{header|Ring}}==
<lang ring>
See "Send email..." + nl
sendemail("smtp://smtp.gmail.com",
"calmosoft@gmail.com",
"calmosoft",
"calmosoft@gmail.com",
"calmosoft@gmail.com",
"calmosoft@gmail.com",
"Sending email from Ring",
"Hello
How are you?
Are you fine?
Thank you!
Greetings,
CalmoSoft")
see "Done.." + nl
</lang>
Output:
<pre>
Hello
How are you?
Are you fine?
Thank you!
Greetings,
CalmoSoft
</pre>


=={{header|Ruby}}==
=={{header|Ruby}}==