duanpa1980 2014-05-17 12:12
浏览 43
已采纳

TextArea wordWrap用于邮件

I'm using phpMailer in my project , and passing the message/body via a CHtml textArea.

However , long mails are not being send (or when I used just mail() , the message was empty)

Now , when I write a message in the code , with all is fine.

So fom that I conclude that the textArea is not breaking the lines (gets over 70) , I tried using word-wrap but it seems like not working.

Here's pat of my mailer:

$mail->WordWrap = 50;
$mail->Subject = ($_GET['subject']);
$mail->MsgHTML($_GET['message']);                                       
$mail->AddAddress(Person::model()->findByPk($id)->email);
$mail->Send();

and here is the textArea:

 <?php echo CHtml::textArea('message','message. . . ',array('id'=>'message','style'=>'text-align: right','cols'=>75)); ?>

Does anyone know where is the problem?

Thanks , Mark.

  • 写回答

2条回答 默认 最新

  • douyinliu8813 2014-05-17 12:22
    关注

    The message is not being passed via but from the textarea and via an HTTP GET request which probably is one of the problems since the total length of a GET request body is limited to 1024 characters.

    The WordWrap addribut tells the mailer to break the body text at every nth character with a newline so you don't have to worry about that. Just make it a POST.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 拟通过pc下指令到安卓系统,如果追求响应速度,尽可能无延迟,是不是用安卓模拟器会优于实体的安卓手机?如果是,可以快多少毫秒?
  • ¥20 神经网络Sequential name=sequential, built=False
  • ¥16 Qphython 用xlrd读取excel报错
  • ¥15 单片机学习顺序问题!!
  • ¥15 ikuai客户端多拨vpn,重启总是有个别重拨不上
  • ¥20 关于#anlogic#sdram#的问题,如何解决?(关键词-performance)
  • ¥15 相敏解调 matlab
  • ¥15 求lingo代码和思路
  • ¥15 公交车和无人机协同运输
  • ¥15 stm32代码移植没反应