$(function (){
	$('.sendbtn').click(function (){
	        // 将按钮设置为不可用
		$(this).css({background:'#cccccc'}).prop('disabled',true);
		var seconds = 6;
		var timmer = setInterval(function (){
			if(seconds <= 0){
				clearInterval(timmer);
				// 将按钮设置为可用
				$('.sendbtn').css({background:'#ff6599'}).prop('disabled',false);
				$('.timemsg').html('');
			}else{
				$('.timemsg').html(seconds+' 秒后重新发送');
			}
			seconds--;
		},1000);
		
		// 发送邮件
		
	});
});