This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE HTML> | |
<html lang="en-US"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>SendGrid Demo</title> | |
</head> | |
<body> | |
<form action="process.cfm" method="POST"> | |
<div> | |
<label for="emails"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
:: | |
:: Directory structure based on the one listed at | |
:: http://www.coldmvc.com/guide/introduction/directory-structure | |
:: and some of my own observations on file content. | |
:: | |
@ECHO OFF | |
IF "%1" == "" GOTO NeedsArgument ELSE GOTO BuildFolderStructure |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!--- Instantiate the MuraProxy webservice ---> | |
<cfset muraProxy = createObject( "webservice", "http://localhost/muraFork/MuraProxy.cfc?wsdl" ) /> | |
<!--- Authenticate ---> | |
<cfset authToken = muraProxy.login( 'admin', 'admin', 'default' ) /> | |
<!--- Create our args struct and serialize it to place in the URL ---> | |
<cfset args = structNew() /> | |
<cfset args.siteID = 'default' /> | |
<cfset args = serializeJSON( args ) /> |
NewerOlder