Jump to content

twelvetens

Members
  • Posts

    9
  • Joined

  • Last visited

Everything posted by twelvetens

  1. Hi Ryan, Sure thing - I'd be interested in getting some indicative pricing on that - although it seems like such a key feature, I'm surprised it's not included as part of the plug-in - surely most clients would like to be able to see if a particular email address is on the blacklist or not?! You can email me direct on james [at] glenavontechnology.co.uk Cheers.
  2. ...even just a bit of feedback when using the AddRecipient function (e.g "address is on blacklist" as the result) would be great...
  3. In CloudMail, we have the ability to add or remove specified addresses from a blacklist. This is great, but there's no way to see if a given address is on the blacklist before we try to add or remove it. My client's would like to be able to see which of their clients are on the blacklist for sending. Is this possible somehow?
  4. Thanks all, managed to get it sorted now, through picking up various nuggets of information here and on other forums.
  5. Hi, I'd really love some help implementing a similar problem I have, if you're still active on this forum???
  6. If you're looking up GPS co-ordinates for addresses with not much detail ( e.g only containing city, county), then google will actually send a few co-ordinates as part of the api response. FM Easy Maps by default always grabs the first pair, which can often be far from accurate. I've tweaked the script steps to be more accurate in these situations, whilst still working the same way on 'full' addresses: For Latitude: Let ( [ $API_Result = Evaluate ( "EasyMaps::EM_Global" ); $loctype = If ( PatternCount ( $API_Result ; "\"location_type\" : \"APPROXIMATE\"," ) ; 3 ; 1 ) ; $Start = Position ( $API_Result ; "\"lat\" : " ; 1 ; 1*$loctype ) + Length ( "\"lat\" : " ); $Stop = Position ( $API_Result; ","; $Start; 1 ) ] ; Round ( Middle ( $API_Result; $Start ; $Stop - $Start ); 8 ) ) For Longitude: Let ( [ $API_Result = Evaluate ( "EasyMaps::EM_Global" ); $loctype = If ( PatternCount ( $API_Result ; "\"location_type\" : \"APPROXIMATE\"," ) ; 3 ; 1 ) ; $Start = Position ( $API_Result ; "\"lng\" : " ; 1 ; 1*$loctype ) + Length ( "\"lng\" : " ); $Stop = Position ( $API_Result; "}"; $Start; 1 ) ] ; Round ( Middle ( $API_Result; $Start ; $Stop - $Start ); 8 ) )
  7. Hi Tim, are you still developing FM Easy Maps? Been checking out your posts on Xojo BTW, looks very interesting...
  8. http://www.yourCustomDomain.com/admin-console WebDirect: Hi, this is a great solution, and FMI works fine, but the admin console url you've suggested gives me a java error, both on the server itself, and accessing from a remote machine... Failed to load the bootstrap javascript: ./VAADIN/vaadinBootstrap.js Any ideas?
  9. Larry Goldman, you have made my freakin' day. Thanks for the succinct instructions, and the pre-packaged webapp config files. Great Job.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.