Skip to content

Instantly share code, notes, and snippets.

View MrAbalogu's full-sized avatar

Prince Abalogu MrAbalogu

View GitHub Profile
@MrAbalogu
MrAbalogu / PHPMailer and mailgun
Created June 11, 2016 11:53
Send mail from contact form with PHPmailer & Mailgun very easy
// FIRST CREATE A FREE MAILGUN ACCOUNT HERE https://www.mailgun.com/
// html contact form example
<form action="mail.php" method="post">
<h5>name</h5>
<input type="text" name="name">
<h5>email address</h5>
<input type="text" name="email">
<h5>message</h5>
<textarea name="message"></textarea>