#Tmail Issue – Patch fixing the bug in email encoding. Emails with multiple 
#recipients were malformed having extra blank line between every 4-7 recipient 
#addresses.

module TMail

	class Encoder

		def puts_meta( str )
			add_text str
		end

	end
	
end