php: Textarea HTML value to show in Html Email?

samir_impinge

New Member
I'm using PHPmailer and everything is perfect except the Texts inside \[code\]<textarea>\[/code\] are showing as ONE SINGLE LINE. Meaning, no html value (for only TEXTAREA) at all.
  • Actually the mail itself is HTML already.
  • I can embed Images.. etc as well.
  • Just the \[code\]<textarea>\[/code\] is not working.
I am using this:\[code\]$mail->IsHTML(true);$mail->Body = $_POST['textarea'];\[/code\]Lets say the \[code\]<textarea>\[/code\] contains something like:\[code\]Hello,How are you.Best Wishes,4lvin\[/code\]Then in the email, it is showing just like:\[code\]Hello, How are you. Best Wishes, 4lvin\[/code\]Any idea please? :(
 
Back
Top