Skip to content

Instantly share code, notes, and snippets.

@Macagare
Macagare / gist:4603792
Last active October 18, 2019 22:32
Coldfusion: strip tags from html
<!--- strip tags --->
<cfset stripedString = ReReplaceNoCase(source,"<[^>]*>","","ALL") />
@noxqsgit
noxqsgit / mail.rb
Created April 3, 2014 13:23
amazon SES + ruby (Net::SMTP)
#!/usr/bin/env ruby
require 'net/smtp'
unless (2..3).include? ARGV.length
puts 'Usage: mail.rb SUBJECT TO [FROM]'
exit 1
end
subject, to, from_ = ARGV