And there is this;

sendGrid

https://sendgrid.com/pricing

if you can afford it.

API's on the server as as simple as

<?lc

function makeRecipientsString pRecipients
    repeat for each item x in pRecipients
       put "to[]=" & x & "&" after tRecipientsString
   end repeat
   return tRecipientsString
end makeRecipientsString

command sendGridMail pRecipients,pSubject,pBody,pFrom
put "api_user=##YourUserName## &"  into tEmail
put "api_key=##Yourkey##&" after tEmail
put makeRecipientsString(pRecipients) after tEmail
put ( "subject=" & urlEncode(pSubject) ) & "&" after tEmail
put ("text=" & urlEncode(pBody) ) & "&" after tEmail
put ("from=" & pFrom) after tEmail
put tEmail & cr & cr after url ("file:" & $_SERVER["DOCUMENT_ROOT"] & 
"/ddd/ddd-log.txt")
POST tEmail to URL "https://api.sendgrid.com/api/mail.send.json";
put it & cr & cr after url ("file:" & $_SERVER["DOCUMENT_ROOT"] & 
"/ddd/ddd-log.txt")
end  sendGridMail

Advantages: you don't need to run a mail server/service on your server at all. 
SMPT is simply off

The debugging mail games are over.


BR


On January 24, 2016 at 6:31:59 AM, tbodine 
(bod...@bodinetraininggames.com<mailto:bod...@bodinetraininggames.com>) wrote:

Hi Bill.
Yes, I'd really like to see your tutorial on that approach.
Thanks!
Tom
_______________________________________________
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

Reply via email to