Or if you have the order acknowledgment set up as a report already, just print the report as a pdf and use the EMAIL ON option. You need to put in all your email settings (user, password, smtp server, etc.). I think Razzak has it all covered in his 'all about the print command' article.....or look under EMAIL in the help file.
This works well if you're processing one at a time. If you're doing many at once, RMail is a better choice and is sooo worth it. Dawn Hast "Walker, Buddy" <[EMAIL PROTECTED]> wrote on 02/12/2008 03:35:41 PM: > Dick > Have you tried using RMail. I send out things like this everyday > using RMail. > > Buddy > > > > -----Original Message----- > From: [email protected] > To: RBASE-L Mailing List > Sent: Tue Feb 12 15:23:42 2008 > Subject: [RBASE-L] - Automated E-Mail > > 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

