我想做这样的事情:
用户会看到我网站上不允许的图片。现在,他单击“报告”按钮,并打开mailto窗口。
实际上我的网站上有一个textfield和textarea。这看起来不太好。 我想做的是:
除了提交按钮外,我的网站上除了文本框或文本区域之外什么也没有。 如果用户按下按钮,则会弹出一个mailto,主题图像已报告,而body应该是我的图片和图片标题的变量。
应该是这样的:
admin@mysite.de 图像有报道 pictureid = 15 title =大窗口
$html .= '<form action="mailto:admin@mysite.de">';
$html .= '<input name="subject" type="text" />';
$html .= '<textarea name="body"></textarea>';
$html .= '<input type="submit" value="Report" class="ug-styled-button">';
$html .= '</form>';
答案 0 :(得分:0)
您可以在mailto链接中使用mailto变量
示例:
mailto:someone@example.com?subject=Image%20Report&body=pictureid=$picture_id&%20title=$image_title
你必须转义变量$ picture_id和$ image_title