numericInteger
Programmer
Hi all! I would like to send an email to customer by using Informix 4gl. Is that possible?? Any sample code to guide me? Thank you
regards,
Newbies.
regards,
Newbies.
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
main
define mystring char(40)
let mystring = "mailx eds@myserver < myfile"
run mystring
end main
main
define xx smallint,
sstd char(80)
whenever error continue
let xx = rx_shopenw("mailx eds@myserver", 0) #open a valid unix command
let xx = rx_shwrite("send line 1", 0) # write to the pipe
let xx = rx_shwrite("send line 2", 0)
call rx_shclose(0) #be sure to close the pipe
end main