Posted by : Unknown Kamis, 05 Februari 2009

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

Description: SMTP Feedback Mail class with jQuery Slide Effect.
Rating: 4.5
Reviewer: Unknown
ItemReviewed: SMTP Feedback Mail class with jQuery Slide Effect.

Leave a Reply

Monggo Tinggalkan Jejak Kaks :)

Subscribe to Posts | Subscribe to Comments

Welcome to My Blog

Popular Post

Labels

Arsip Blog

Followers

- Copyright © 2013 shad0w-share | Designed by Johanes Djogan -