$mailbody=$mailbody."Hi <br> Off  ".$user_id." in Lieu leave part of before accumulative total Best Regards “; 

解决方案 »

  1.   

    $mailbody .= $strSplit . "Hi <br> Off  ".$user_id." in Lieu leave part of before accumulative total Best Regards “; $strSplit为特殊分隔符.
    可以任意指定.
    不写的话,以后就分不开了.
      

  2.   

          $mailbody="Hi <br> Off  ".$user_id." in Lieu leave part of before accumulative total Best Regards “; 

     $mailbody .="Hi <br> Off  ".$user_id." in Lieu leave part of before accumulative total Best Regards "; 
      

  3.   


    //存数组好点.
    $mailbody[$user_id] = "Hi <br> Off  ".$user_id." in Lieu leave part of before accumulative total Best Regards “;
      

  4.   

    $mailbody.=mailbody;
    =>
    $mailbody.=$mailbody;