This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
language: node_js | |
node_js: "10" | |
os: osx | |
osx_image: xcode10.2 | |
before_cache: | |
- rm -rf $HOME/.cache/electron-builder/wine | |
cache: | |
yarn: true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
// Optional jQuery Validation | |
function sendEmail(){ | |
var email = document.getElementById('email').value; | |
var name = document.getElementById('name').value; | |
var message = document.getElementById('message').value; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* This example shows settings to use when sending via Google's Gmail servers. | |
*/ | |
// Make sure this file is in the same folder as PHPMailerAutoload.php | |
require 'PHPMailerAutoload.php'; | |
// Get the data from your form inputs | |
$name = strip_tags($_REQUEST['name']); // name of sender |