我在我的网站发送的电子邮件中实现了paypal立即购买按钮。我使用PHP动态创建了按钮(html按钮)(按钮的数量是可变的)。
但是当我点击它时,电子邮件中的按钮会将我带到另一个网站。只有雅虎邮件带我到你的订单摘要"页面(我想去的实际页面)所有其他电子邮件客户端(gmail,hotmail)打开http://client.updatemyprofile.com/d-l-2AD73FFF-l-o此页面。电子邮件中显示的html代码如下所示。
<form target="_blank" name="_xclick" action="https://www.paypal.com/cgi-bin/webscr" onsubmit="return theMainWindow.showFormWarning(this)" method="post">
<a rel="nofollow" target="_blank" href="http://client.updatemyprofile.com/d-l-2AD73FFF-l-o" lang="en">
<input type="hidden" name="cmd" value="_xclick">
<input type="hidden" name="business" value="****@*****.com">
<input type="hidden" name="currency_code" value="CAD">
<input type="hidden" name="item_name" value="Agro">
<input type="hidden" name="amount" value="488.97">
<input type="image" src="https://www.paypalobjects.com/fr_FR/i/btn/x-click-but06.gif" name="submit" alt="Make payments with PayPal - it's fast, free and secure!">
<p></p>
</a>
</form>
Yahoo电子邮件按钮(有效)
- &gt;
其他电子邮件按钮(不起作用)
- &gt;
需要解决此问题的方法。提前致谢。