Files
i-buy.properties/templates/sell_sendError.html
2017-02-07 12:55:56 -06:00

11 lines
734 B
HTML

<h1>ERROR occured whilst sending form data. Please try again!</h1>
<b>... or alternatively send the data via <button class="btn btn-success" onclick="generateMail();" id="mailLink">e-mail</button>.</b>
<script>
function generateMail(){
var content="mailto:webmaster@i-buy.properties?subject=Property-Information - fallback&body=" + encodeURIComponent("DO NO MODIFY BELOW CONTENT!\r\n----------------------------------------SNIPP----------------------------------------\r\n" + JSON.stringify(ibuyproperties.helpers.toJSO($("#pnl_Sell"))) + "----------------------------------------SNAPP----------------------------------------");
console.log("Fallback Mail Content",content);
window.location.href=content;
}
</script>