我不精通PHP,这很明显。我正在使用此处显示的电子邮件 php 脚本http://support.hostgator.com/articles/specialized-help/technical/how-to-use-sendmail-with-php
这就是我想要做的。当有人访问http://example.com/jeremy时,我希望将表单的结果发送到 jeremy@domain.com 。如果有人去 /brian 我希望将结果发送到 brian@domain.com 。
因此,在脚本中,我将此代码放入电子邮件行
$myemail = "$request_url=ltrim($_SERVER['REQUEST_URI'],'/');echo.$request_url;@domain.com";
但这给了我这个错误
Parse error: syntax error, unexpected T_ENCAPSED_AND_WHITESPACE, expecting T_STRING or T_VARIABLE or T_NUM_STRING in /email_form.php on line 78
我觉得我很接近,但我就是想不通。我应该使用什么?感谢您的耐心和回复。