0

I've got a field that contains an RTF document (stored as text) that I want to use as a body of an email. Is there any way of sending it as the body of the email using PHPMailer?

franglais
  • 928
  • 2
  • 15
  • 39
  • Convert it to text or html. Or send it as an attachement. Because email clients usually show text or html and sometimes audio/video files. But rarely other formats. – Justin T. Jun 01 '12 at 13:06

1 Answers1

0

First you have to convert rtf to html. Use this: Free (preferably) PHP RTF to HTML converter?

then send the html text in email

Community
  • 1
  • 1
kishu27
  • 3,140
  • 2
  • 26
  • 41