Re: Version 1.2 of the mail stack

2021-03-02 Thread Charles Warwick via use-livecode
Hi Rick, Assuming you are using the code from the lesson, just add any Bcc e-mail addresses to the tRecipient variable before the call to tsNetSmtpSync. Since you don't include them in the variables passed to mimeEncodeAsMIMEEmail, the addresses won't be included in the e-mail headers.

Re: Version 1.2 of the mail stack

2021-03-02 Thread Rick Harrison via use-livecode
Hi Matthias, I got it to work! I just needed the statement: tsNetInit Now it works great! Is there anyway I can put in a BCC email address instead of CC? Thanks! Rick > On Mar 2, 2021, at 6:19 PM, matthias rebbe via use-livecode > wrote: > > no, only the file which is suitable for the

Re: Version 1.2 of the mail stack

2021-03-02 Thread Rick Harrison via use-livecode
Hi Matthias, I put tsNet.dylib into the already existing externals folder that was inside of the CGI-Executables folder where the revdb.dylib and others reside as it seemed to be the logical choice. The error I was getting went away and the script completes, but no message gets sent out. I

Re: Version 1.2 of the mail stack

2021-03-02 Thread matthias rebbe via use-livecode
no, only the file which is suitable for the OS on which the Livecode Server is running. For Windows it would be one of the .dll files, for Linux one of the .so files. The file with the 64 in its filename is for the 64bit version of the os, the other one for the 32bit verision. So for macOS i

Re: Version 1.2 of the mail stack

2021-03-02 Thread Rick Harrison via use-livecode
Hi Matthias, What I’m seeing is: Applications LiveCode (App) (Right Click)Show Package Contents Contents Tools Ext tsNet_INDY_1.4.2 (Folder Full of tsNet stuff) Do I want the entire folder? Do I just want: tsNet.bundle tsNet.dylib tsnetliburl.livecodescript There’s a lot of items. Thanks,

Re: Version 1.2 of the mail stack

2021-03-02 Thread matthias rebbe via use-livecode
it seems tsNet is missing in your installation of Livecode Server. Please create a folder externals in the folder where livecode server is installed. Then copy the tsNet external from you Livecode Desktop installation into the newly created externals folder. That should do. Regards, -

Re: Version 1.2 of the mail stack

2021-03-02 Thread Rick Harrison via use-livecode
Hi Matthias, I put mime.livecodescript into the folder with the script that call it. I put in the start using “mime.livecodescript” statement. When I run the script, I now get: Function: error in function handler (tsNetSmtpSync) which is pointing to: put tsNetSmtpSync(tURL, tFrom,

Re: Version 1.2 of the mail stack

2021-03-02 Thread matthias rebbe via use-livecode
When i did test it some time ago, i've put it in the same folder where the livecode server script that used the library was located. - Matthias Rebbe Life Is Too Short For Boring Code > Am 02.03.2021 um 21:05 schrieb Rick Harrison via use-livecode > : > > Hi Matthias, > > I managed to find

Re: Version 1.2 of the mail stack

2021-03-02 Thread Rick Harrison via use-livecode
Hi Matthias, I managed to find mime.livecodescript. What folder do I need to put it into on my macOS Catalina LC Server? Thanks, Rick > On Mar 2, 2021, at 12:55 PM, matthias rebbe via use-livecode > wrote: > > I would copy the complete file mime.livecodescript to the server. > The file can

Re: Version 1.2 of the mail stack

2021-03-02 Thread matthias rebbe via use-livecode
I would copy the complete file mime.livecodescript to the server. The file can be found in the Extensions folder either in the app bundle (macOS) or the Livecode program folder under program files (Windows). In your script use 'start using" to use the library e.g. start using

Re: Version 1.2 of the mail stack

2021-03-02 Thread Rick Harrison via use-livecode
Hi Matthias, Ok, I only see mimeEncodeFieldAsMIMEMultipartDocument in com.livecode.library.mime and not in the TsNetLibUrl, so I guess that answers that question. If I’m incorrect somehow, please let me know. Thanks, Rick > On Mar 1, 2021, at 7:09 PM, matthias rebbe via use-livecode >

Re: Version 1.2 of the mail stack

2021-03-02 Thread Rick Harrison via use-livecode
Hi Matthais, It’s been so long since I have used the project browser I forgot that one has to click on the number of lines of code to see the actual code. LOL Ok, so which one do I want? Rick ___ use-livecode mailing list

Re: Version 1.2 of the mail stack

2021-03-02 Thread Rick Harrison via use-livecode
Hi Matthias, Sorry, but I have never needed to mess with libraries before this. Where do I get the complete Mime library script? I tried looking in the Project Browser for version 1.2 of the mail stack but all I could see was com.livecode.library.mime and tsNetLibUrl for choices. When I open

Re: Version 1.2 of the mail stack

2021-03-01 Thread matthias rebbe via use-livecode
>> tsNet externals. >> If i remember correctly, i added the FTP part or so and put that modified >> stack as lcMailAndFtp.livecode online. >> >> You could look here for a newer version (1.2) of Charles mail sample stack. >> https://www.techstrategies.com.au/

Version 1.2 of the mail stack

2021-03-01 Thread Rick Harrison via use-livecode
ginal stack was created by Charles Warwick, the developer of the tsNet > externals. > If i remember correctly, i added the FTP part or so and put that modified > stack as lcMailAndFtp.livecode online. > > You could look here for a newer version (1.2) of Charles mail sample stack. &g