1
我嘗試使用的mailto功能,使用變量的郵寄地址功能HTML
href="mailto:[email protected]?subject=this is subject body&body=this is message body"
現在,我要存儲的變量用戶輸入和,我想它相應傳遞到主題和正文。例如
$s="this is subject body";
$b="this is message body";
mailto:[email protected]?subject=$s&body=$b;
所以有可能在mailto函數中使用變量嗎?