Make an HTTP Request to other server when Entry Create
-
Hi
Thanks For This Helpfull plugin.
i need to send http request to windows server using wp_remote_post when new entry created.
i have search in plugin function and i have added my code at the end of “email.php”
and it works fine.But i don’t Know how to get form or entries details like Name,Email,Address
My Code is ://Trying To Get All New purchase info
$args = array(‘body’ => array( ‘Name’ =>$HowToGetName, ‘Address’ => $HowToGetAddress ));//Send new purchase info to other server via http post
wp_remote_post(‘http://mydomain/ContactRequest/’, $args);
The topic ‘Make an HTTP Request to other server when Entry Create’ is closed to new replies.