rexx-things/samples/oorexx/sendmail-smtp.rexx
2025-03-12 20:50:48 +00:00

124 lines
4.1 KiB
Rexx
Executable File

#!/usr/bin/env rexx
/* Rexx */
Call RxFuncAdd 'CURLLoadFuncs', 'rexxcurl','CurlLoadFuncs'
Call CURLLoadFuncs
conf = 'sendmail-smtp.conf'
If Stream( conf, 'C', 'QUERY EXISTS' ) = '' Then
Do
Say 'Configuration file not found.'
Say 'Requires the following:'
Say ' email = "sender@somewhere.com"'
Say ' password = "mypass"'
Say ' password is gmail application password'
Say ' dest = "recipient@somewhere.com"'
Say ' server = "smtp://smtp.gmail.com:587"'
Exit 1
End
Do While Lines( conf ) > 0
Interpret Linein( conf ) /* This is generally regarded as dangerous!! */
End
/* -- check if our version of Rexx/CURL support SMTP */
havesmtp = 0
protocols = ''
Do i = 1 to !REXXCURL.!PROTOCOLS.0
protocols = protocols !REXXCURL.!PROTOCOLS.i
If !REXXCURL.!PROTOCOLS.i = 'smtp' Then
Do
havesmtp = 1
End
End
/* -- check if our version of Rexx/CURL support SMTP */
If havesmtp = 0 Then
Do
Say 'You cannot run this demo program as your version of Rexx/CURL does not support SMTP. Supported protocols are:' protocols
Exit 1
End
/* -- check if our version of Rexx/CURL support SSL */
If !REXXCURL.!SUPPORTS_SSL = 0 Then
Do
Say 'You cannot run this demo program as your version of Rexx/CURL does not support SSL'
Exit 1
End
crlf = '0d0a'x
curl = CurlInit()
If curl \= '' Then
Do
msg = 'We are running' CurlVariable('VERSION')
Say '******'
Say msg
Say '******'
Say
Call CurlSetopt curl, 'VERBOSE', 1
If curlerror.intcode \= 0 Then Call Abort 'Error setting VERBOSE option', curl
/* setup our headers and email body */
from = '<'email'>'
in.0 = 6
in.1 = 'Subject: SMTP example from Rexx/CURL'
in.2 = 'From:'
in.3 = '' /* -- MUST be a blank line between headers and body */
in.4 = 'The body of the message starts here'
in.5 = 'and can be multiple lines.'
in.6 = ''
/* Message */
Call CurlSetopt curl, 'INSTEM', 'in.', crlf
If curlerror.intcode \= 0 Then Call Abort 'Error setting INSTEM option', curl
/* Metadata */
Call CurlSetopt curl, 'URL', server
If curlerror.intcode \= 0 Then Call Abort 'Error setting URL option', curl
Call CurlSetopt curl, 'MAILFROM', from
If curlerror.intcode \= 0 Then Call Abort 'Error setting MAILFROM option', curl
Call CurlSetopt curl, 'USERNAME', email
If curlerror.intcode \= 0 Then Call Abort 'Error setting USERNAME option', curl
Call CurlSetopt curl, 'PASSWORD', password
If curlerror.intcode \= 0 Then Call Abort 'Error setting PASSWORD option', curl
Call CurlSetopt curl, 'USESSL', 'ALL';
If curlerror.intcode \= 0 Then Call Abort 'Error setting USESSL option', curl
Call CurlSetopt curl, 'SSLVERIFYHOST', 0
If curlerror.intcode \= 0 Then Call Abort 'Error setting SSLVERIFYHOST option', curl
Call CurlSetopt curl, 'SSLVERIFYPEER', 0
If curlerror.intcode \= 0 Then Call Abort 'Error setting SSLVERIFYPEER option', curl
rcpt.0 = 1
rcpt.1 = '<'dest'>' /* -- email address should be enclosed in angle brackets */
Call CurlSetopt curl, 'MAILRCPT', 'rcpt.'
If curlerror.intcode \= 0 Then Call Abort 'Error setting MAILRCPT option', curl
Call CurlSetopt curl, 'UPLOAD', 1
If curlerror.intcode \= 0 Then Call Abort 'Error setting MAILRCPT UPLOAD', curl
Call CurlPerform curl
If curlerror.intcode \= 0 Then Call Abort 'Error getting source of' url, curl
/*
* Cleanup the connection
*/
Call CurlCLeanup curl
End
Call CurlDropFuncs 'UNLOAD'
Return 0
/* creates a date suitable for a message header */
getdate: procedure
date = Left(Date('W'),3)',' date('N') time('N')
offset = time('O') / 36000000
If offset > 0 Then sign = '+'
Return date sign || offset
Abort: Procedure Expose curlerror.
Parse Arg msg, curl
Say msg
If curlerror.curlcode \= 0 Then Say 'cURL error:' curlerror.curlcode '-' curlerror.curlerrm
Else Say 'RexxCURL error:' curlerror.intcode '-' curlerror.interrm
Call CurlCLeanup curl
Call CurlDropFuncs 'UNLOAD'
Exit 1