PHP Sample Code
Integrate and deliver in minutes


	
	<?php
	
	$webhook_url = 'http://api.proemailapi.com/FD7E6B2948CE99478D1ED9428F235889B6E7DF?s=[SUBJECT]&m=[MESSAGE]';
	$result = file_get_contents($webhook_url);
	
	//Replace [SUBJECT] with email subject line
	//Replace [MESSAGE] with email message body

	?>