我的邮件主题为“ Brand1#4新票注释”
但是,当我收到一封电子邮件时,它会在#之前删除一个空格。像这样的“ Brand1#4新票评论”
如果我输入任何其他特殊字符(如@),则可以正常工作。有想法吗?
下面是我为电子邮件创建主题字符串的代码。
> $params['appName'].' #'.$support_ticket->id.' New ticket comment';
任何主意是什么问题?
Laravel 5.2
PHP 7.0.31
答案 0 :(得分:0)
您可以像这样使用
:
$params['appName']." #".$support_ticket->id." New ticket comment";
我也将'
更改为"
答案 1 :(得分:0)
如果<div id="container">
<fieldset>
<legend>Dane</legend>
Dropdown
<select name="drp" id="dropdown" style="width:90px;">
<option value="0"></option>
<option value="1">1 </option>
<option value="2">2</option>
</select><br>
A <input type="text" id="A"><br>
B <input type="text" id="B"><br>
C <input type="text" id="C">
<input type="button" value='Add' id='add_btn' />
</fieldset>
<div id="tableContainer" class="tableContainer">
<div id="myTablecontainer">
<table id="myTable">
<tr>
<th class="MyTableHeadings clm1">ID</th>
<th class="MyTableHeadings clm2">H1</th>
<th class="MyTableHeadings clm3">H2</th>
<th class="MyTableHeadings clm4">H3</th>
<th class="MyTableHeadings clm5">H4</th>
<th class="MyTableHeadings clm6">Delete</th>
</tr>
</table>
</div>
<div class="scrollContent">
<table id="myTable2"></table>
</div>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
是问题字符,您可以尝试使用其html实体代码#
。