Diff
1519
1533
1533
mail.php
  |
76 | 76 | | } |
| |
77 | 77 | | |
| |
78 | 78 | | function setBodyPlain($body) { |
  |
79 | | - | $this->_body_plain = wordwrap($body, 78, "\r\n", false); |
| |
| 79 | + | $this->_body_plain = $body; |
|
80 | 80 | | $this->_body = null; |
| |
81 | 81 | | } |
| |
82 | 82 | | |
| |
83 | 83 | | function setBodyHTML($body) { |
  |
84 | | - | $this->_body_html = wordwrap($body, 998, "\r\n", true); |
| |
| 84 | + | $this->_body_html = $body; |
  |
85 | 85 | | $this->_body = null; |
| |
86 | 86 | | } |
| |
87 | 87 | | |
|