I'm building a web application that needs to send notifications by SMS. As ColdFusion itself provides an SMS Service, can I use the same for sending SMS without using any 3rd party SMS Gateway Service like Clickatell?
I have found some information at Ben Nadel's website but it is not working, Sending Text Messages (SMS) With ColdFusion And CFMail
I have tried the following code,
<cfmail to="[email protected]" from="9567102323" subject="New Message" type="text">
<cfmailpart type="text/plain">Hello huan, this is a test message</cfmailpart>
</cfmail>
[email protected]and receive a text. Once you get that working and know the correct email address for sending then try using ColdFusion. From your example my guess would be that it failed because you did not supply a properly formatfromaddress. - Miguel-F[email protected]via your normal email client (like Gmail) and see if it shows up as a text message. - Brian FitzGerald