<?php
$to = "somebody@example.com, somebodyelse@example.com";
$subject = "HTML email";
$message = "
<html>
<head>
<title>HTML email</title>
</head>
<body>
<p>This email contains HTML Tags!</p>
<table>
<tr>
<th>Firstname</th>
<th>Lastname</th>
</tr>
<tr>
<td>John</td>
<td>Doe</td>
</tr>
</table>
</body>
</html>
";
// Always set content-type when sending HTML email
$headers = "MIME-Version: 1.0" . "\r\n";
$headers .= "Content-type:text/html;charset=UTF-8" . "\r\n";
// More headers
$headers .= 'From: <webmaster@example.com>' . "\r\n";
$headers .= 'Cc: myboss@example.com' . "\r\n";
mail($to,$subject,$message,$headers);
?>
Html, JAVA,DOTNET,Javascript, PHP, and JQuery Scripts and its issues with solutions
Friday 14 November 2014
PHP mail() Function with html content type
Tuesday 11 November 2014
Motorola DROID Turbo Specification & expecting launch india
Specifications: Operating system : Android 4.4.4, KitKat® System Architecture/Processor: Motorola Mobile Computing System, including Qualcomm® Snapdragon™ 805 processor with 2.7 GHz quad-core CPU (APQ8084) with 64-bit memory access Adreno 420 @ 600 MHz GPU Natural Language Processor Contextual Computing Processor Memory (RAM): 3 GB (LPDDR3 with 64-bit access) Storage: 32 GB (All models)* 64 GB (Black Ballistic Nylon only)* Rear Camera: 21 MP (5248x3936) in 4:3 15.5 MP (2952x5248) in 16:9 f/2.0 aperture Tap anywhere to capture Dual LED flash Auto focus 4X digital zoom Slow motion video Burst mode Auto HDR Panorama Tap to focus Front Camera: 2 MP, 1080p HD Video Dimensions: Black Ballistic Nylon Height: 143.5 mm (5.65 inches) Width: 73.3 mm (2.89 inches) Curve: 8.3-11.2 mm (0.33-0.44 inches) Metallic Red, Metallic Black Height: 143.5 mm (5.65 inches) Width: 73.3 mm (2.89 inches) Curve: 7.8-10.6 mm (0.31-0.42 inches) SIM card: Nano-SIM Weight: Black Ballistic Nylon 176 grams (6.2 ounces) Metallic Red, Metallic Black 169 grams (6.0 ounces) Display: 5.2” 1440p Quad HD 2560x1440 AMOLED, 565 ppi Corning® Gorilla® Glass 3 Battery: 3900 mAh Mixed-usage Up to 48 hours** Supports Motorola Turbo Charger (included): Up to 8 hours of mixed usage battery in 15 minutes of charging*** Water-resistant: Yes Networks: CDMA, EVDO Rev A, 4G LTE, GSM/UMTS/HSPA+ Bands: CDMA/EVDO Rev A (850, 1900 MHz) LTE Cat 4 (Bands 2, 3, 4, 7, 13) Carrier Aggregation (B4+13) GSM/GPRS/EDGE (850, 900, 1800, 1900 MHz) UMTS/HSPA+ (850, 900, 1900, 2100 MHz) Connectivity: Micro USB 3.5 mm headset jack Bluetooth® Technology: Bluetooth version 4.0 LE Wi-Fi: 802.11 a/b/g/n/ac (dual-band capable), mobile hotspot Speakers: Mono, front-ported Audio Playback: AAC, AAC+, Enhanced AAC+, AMR-NB, AMR-WB, MIDI, MP3, PCM/WAVE, FLAC, OGG/Vorbis Video Playback: H.263, H.264 AVC, H.265, MPEG-4 SP, VP8 Video Capture: 4K at 24fps, 1080p at 30fps, 720p Slow Motion NFC: Yes Mobile Payment Services: Softcard Google wallet Location Services: A-GPS Sensors: Accelerometer, Ambient Light, eCompass, Gyroscope, Hall Effect, Infrared, Proximity Base Colors: Black Ballistic Nylon Metallic Black Metallic Red
Wednesday 5 November 2014
How to disable Ctrl+V (Paste) , Ctrl+X (Cut) and Ctrl+C (Copy) with jQuery?
<script src="http://code.jquery.com/jquery-1.9.1.js" type="text/javascript"></script> <script type="text/javascript"> $(function () { $(document).ready(function(){ $('#read').bind("cut copy paste",function(e) { e.preventDefault(); alert(" 'Ctrl+c & Ctrl+x & Ctrl+v has been disabled' ") }); }); }); </script> <input type="text" id="read" />
Subscribe to:
Posts (Atom)