Can I put both Get and Post URL link in an email

拟墨画扇 提交于 2019-12-05 04:51:51

No, you cannot (in form of clickable link). The HTTP POST requests contains parameters in its body, not in the URL.

First question

Never tried it out but, if you use html in your mails it might be possible to build a <form method="post" action="yoururl"> environment which will allow him to approve or deny a change. If you do not build a restful webpage you might use a get link which approves/denies a change, something like http://url/change/2323/approve=yes

bonus question If it is not possible for you to send the <form> in your email it is okay to provide a GET link. Depending on how many changes your boss has to accept/deny it might be also a good idea to provide him a list of changes he can deny/accept in the . Because I don't like to switch between email app and webbrowser.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!