I am using postmark for both sending and receiving emails.   Works great for me.

-= Mike



constant APIKEY = “your_key_goes_here"
constant API_URL = "https://api.postmarkapp.com/email";

--http://developer.postmarkapp.com/developer-build.html For addtional API 
Information

function libPostmark_SendEmail pMessageJSON
   set the httpHeaders to "Accept: application/json" & return \ 
         & "Content-Type: application/json" & return \
         & "X-Postmark-Server-Token: " & APIKEY
   post pMessageJSON to API_URL
   return it
end libPostmark_SendEmail


On Apr 22, 2014, at 11:54 PM, stephen barncard 
<stephenrevoluti...@barncard.com> wrote:

> On Tue, Apr 22, 2014 at 7:26 PM, Scott Morrow
> <sc...@elementarysoftware.com>wrote:
> 
>> I was working something similar.
>> —
>> Scott Morrow
>> 
> 
> I was ready to kluge something with a php/livecode hybrid setup.
> 
> *--*
> *Stephen Barncard - San Francisco Ca. USA - Deeds Not Words*
> _______________________________________________
> 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

_______________________________________________
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