If you would like to make some quick cash, check this code, run it, and if you
can make it work....
I will send CASH. (amount negotiable)
Now that I have your attention...
I have been trying for eons to automate a simple email of order acknowledgement
or invoices.
We use outlook express, but I would be willing to change that for something
that works. (tried thunderbird, no luck)
When run from the R:prompt, the code below, (from Razzak's earlier e-mail)
seems to work... however
The email does not actually send, it just sets in the OE outbox.
It does not seem to matter where OE is open or not, It only sends when you
close OE
Rbase continues to operate correctly, but on closing gives you a ' Rbase has
encountered a problem & needs to close' message.
I just need this to work seamlessly in the background without hang-up or errors.
I have done everything I know to do. This can't be that hard.
Suggest you substitute you email address for verification
How bored are you?
Dick Fey
Carpet Broker Inc
-- Start
-- Pre-Define Required Variables for MapiMail4.RBL Plugin
CLEAR ALL VAR
SET VAR vmailto TEXT = NULL
SET VAR vemailaddress = '[EMAIL PROTECTED]'
SET VAR vquote TEXT = (CVAL('QUOTES'))
SET VAR vresult TEXT = 'vResult'
SET VAR vpipe TEXT = '|'
SET VAR vto TEXT = ('To:'+.vemailaddress)
SET VAR vsubject TEXT = ('Subject: Test Message')
SET VAR vbody TEXT = ('Body:This message is a test')
-- Build one string with all parameters
SET VAR vparameters TEXT = +
(.vquote+.vresult&.vpipe+.vto&.vpipe+.vsubject&.vpipe+.vbody)
CLS
-- Initialize MapiMail4.RBL
PLUGIN mapimail4.rbl &vparameters
-- Clear variables
CLEAR ALL VARIABLES
RETURN
-- End