Re: eMail attachment: best practice?

2024-06-25 Thread Paul Dupuis via use-livecode
I should have mentioned that my app is for macOS and Windows - no iOS or Android version. On 6/25/2024 5:46 PM, Mark Smith wrote: I’ve not used revMail but it’s certainly well documented in mobileComposeHtmlMail. If you need an example PM me. Mark On 25 Jun 2024, at 9:35 PM, Paul Dupuis vi

Re: eMail attachment: best practice?

2024-06-25 Thread Bob Sneidar via use-livecode
I used a properly formatted “url” (it’s not actually a URL) for the server and got a response from the server, so I am communicating, but it’s generating an error even though the user name and password are correct (They are my credentials.) Also, considering that almost all servers are forcing

Re: eMail attachment: best practice?

2024-06-25 Thread Bob Sneidar via use-livecode
The demo stack URL in the script does not look right. I have never used a URL in the form of SMTP://:587/ before. That can’t be right! Bob S > On Jun 25, 2024, at 3:15 PM, matthias rebbe via use-livecode > wrote: > > Instead of using revMail which opens the default mail client app you could

Re: eMail attachment: best practice?

2024-06-25 Thread matthias rebbe via use-livecode
Instead of using revMail which opens the default mail client app you could use tsNET external, which is availlable for Win/Mac/Linux/iOS and Android. The only thing you have to keep in mind is that tsNet directly sends the email instead of opening the default email client. Here you can find an

Re: eMail attachment: best practice?

2024-06-25 Thread Mark Smith via use-livecode
I’ve not used revMail but it’s certainly well documented in mobileComposeHtmlMail. If you need an example PM me. Mark > On 25 Jun 2024, at 9:35 PM, Paul Dupuis via use-livecode > wrote: > > 2) My more important question is how does one create an email with an > attached file? I see no feat

eMail attachment: best practice?

2024-06-25 Thread Paul Dupuis via use-livecode
Under a specific condition, my app creates an email with some pre-populated information using revMail: revMail address, [ccAddress, [mailSubject, [messageBody]]] So, my call is: revMail tSupportEmail, , "Diagnostic Report Information", tEmailBody Where tSupportEmail contains a valid email addr