Loading Searchbox
9lessons programming blog logo
Thursday, February 5, 2009

SMTP Feedback Mail class with jQuery Slide Effect.

6 comments
This post about feedback mail with nice slide effect using php SMTP class and jQuery. It's very useful to add your php websites as like contact/feedback page.
I have downloaded this SMTP class from phpclasses.org. Include with jQuery Slide effect just you have to upload these files into hosting server.

Feedback page with slide effect.


Download Script     Live Demo

You have to add this jquery script in feedback.php:
<script src="http://ajax.googleapis.com/ajax/libs/jquery/
1.3.0/jquery.min.js">type="text/javascript" </script>
 
<script type="text/javascript">
$(document).ready(function(){
 
 $(".button-slide").click(function(){

  $("#board").slideToggle("slow");
  $(this).toggleClass("active"); return false;

 });
  
});
</script>
feedback.php
Contains simple PHP and HTML script. You have to change feedback email id.
<?php
require ("smtpclass.php");
if($_SERVER["REQUEST_METHOD"] == "POST")
 {
$smtp=new SMTPMAIL;

$from=$_POST['email']; 
$body=$_POST['msg']; 
$to="Admin<admin@domain.com>";

$cc="";
$subject="Feedback Mail";
 
  if(!$smtp->send_smtp_mail($to,$subject,$body,$cc,$from))

 $error="Error in sending mail!<BR>Error: ".$smtp->error;
  else
 $report="Mail sent succesfully!";
}
?>
<div style="display: none;" id="board" align="center"><br />
<form id="form1" name="form1" method="post" action="">

  Your Email : <input type="text" name="email" size="25"/>
  Message :<textarea name="msg"  rows="5" cols="23"></textarea>

  <input type="submit" value=" Send " />
  <?php echo $report; echo $error; ?>

  </form></div>
<div align="center"><a href="#" class="button-slide">
Feedback </a></div>

SMTPclass.php
Upload this file into your hosting space. No need to touch this code it's automatically detects your website SMTP mail address.

Download Script

CSS Code :
Include this CSS code in feedback.php.
#board {
  background:#dedede;
 height: 205px;display: none;
  width: 300px;border-bottom: solid 4px #006699;
  position:absolute;
 }
.button-slide {
 text-align: center;background-color:#006699;
  width: 94px;height: 21px;
  padding: 6px 6px 0 0;margin: 0 auto;display: block;
  font: bold 120%/100% Arial, Helvetica, sans-serif;
  color: #fff;text-decoration: none;
 position:fixed;
}
Download Script     Live Demo
Note : I was hosting my demos is 110mb.com. Its a free php hosting area they are not providing any SMTP support.


Related Post :
Delete a Record with animation fade-out effect using jQuery and Ajax.
Twitter Like Flash Message with jQuery.
Perfect Javascript Form Validation using Regular Expressions.
Analyzing URLs as Links to the resource using a PHP function.
Exactly Twitter like Follow and Remove buttons with jQuery and Ajax
Sponsored Links

Recent Posts

Share this post

Subscribe to my feeds

Subscribe
Comments
6 comments
Anonymous said...

if this was using AJAX to send the email without reloading the page - it would be perfect!

Anonymous said...

Warning, the feedback page with slide effect doesn't wokr well in ie6.

Anonymous said...

Added to "tutlist.com":http://tutlist.com

Srinivas Tamada said...

Thank you JohnGalt

Howard said...

getting 220-We do not authorize the use of this system to transport unsolicited,


help!

Dhrup said...

These are rather nice pieces of code - I'll be looking the usefulness for some of this batch ;-)

Post a Comment

Orkut | FacebookAbout Me

Subscribe now!Feeds RSS

Subscribe now!Recent Posts

Subscribe now!Categories

Subscribe now!Comments

People Says

@9lessons thank you for the great tutorials, we truly appreciate your contributions to the design community.

Smashing Magazine

Join into my community

Labs ProfileRelease

My ProfileTwitter