Your Ad Here


Go Back   VIPrapid.com > WEBMASTERS ZONE > Programming

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 06-07-2009, 06:56 AM
VIP
 

Join Date: Jun 2009
Posts: 40
Default need help in mailing

hello

can any body help me with the code to send mails from our website
i need a java or vb code to send mails . please give me the code or its reference asap if u have
gracious
Reply With Quote
  #2 (permalink)  
Old 06-08-2009, 03:11 AM
Administrator
 
Join Date: Mar 2009
Posts: 120
Default

Quote:
Originally Posted by 6888 View Post
hello

can any body help me with the code to send mails from our website
i need a java or vb code to send mails . please give me the code or its reference asap if u have
gracious
you need to send mails through php?
Reply With Quote
  #3 (permalink)  
Old 06-08-2009, 05:11 AM
VIP
 

Join Date: Jun 2009
Posts: 40
Default

i dont know php ., is php the only language that we can send mails . cant we send by java or vb
Reply With Quote
Sponsored links Remove advertisements
Advertisement
Advertisement

  #4 (permalink)  
Old 06-08-2009, 06:37 AM
Administrator
 
Join Date: Mar 2009
Posts: 120
Default

Simple PHP mail script

This script is not only educational, but also applicable for practical Web development. It allows you to place a simple form for sending emails on any HTML page. The script shows you how to gather user input, perform form validation with PHP, and send an email.

First, make the form page mail.html (you may call it whatever you like)...
PHP Code:
<html>
<
head><title>Mail sender</title></head>
<
body>
<
form action="mail.php" method="POST">
<
b>Email</b><br>
<
input type="text" name="email" size=40>
<
p><b>Subject</b><br>
<
input type="text" name="subject" size=40>
<
p><b>Message</b><br>
<
textarea cols=40 rows=10 name="message"></textarea>
<
p><input type="submit" value=" Send ">
</
form>
</
body>
</
html
The form contains the necessary text fields Email, Subject, Message, and the Send button. The line
<form action="mail.php" method="POST">
tells the browser which PHP file will process the form and what method to use for sending data.

When the user fills in the form and hits the Send button, the mail.php file is called...
PHP Code:
<html>
<head><title>PHP Mail Sender</title></head>
<body>
<?php

/* All form fields are automatically passed to the PHP script through the array $HTTP_POST_VARS. */
$email $HTTP_POST_VARS['email'];
$subject $HTTP_POST_VARS['subject'];
$message $HTTP_POST_VARS['message'];

/* PHP form validation: the script checks that the Email field contains a valid email address and the Subject field isn't empty. preg_match performs a regular expression match. It's a very powerful PHP function to validate form fields and other strings - see PHP manual for details. */
if (!preg_match("/\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*/"$email)) {
  echo 
"<h4>Invalid email address</h4>";
  echo 
"<a href='javascript:history.back(1);'>Back</a>";
} elseif (
$subject == "") {
  echo 
"<h4>No subject</h4>";
  echo 
"<a href='javascript:history.back(1);'>Back</a>";
}

/* Sends the mail and outputs the "Thank you" string if the mail is successfully sent, or the error string otherwise. */
elseif (mail($email,$subject,$message)) {
  echo 
"<h4>Thank you for sending email</h4>";
} else {
  echo 
"<h4>Can't send email to $email</h4>";
}
?>
</body>
</html>
As you see, the script is simply one if ... elseif ... else statement. At first, it validates the required form fields. Note that PHP form validation is performed on the server, after sending all the data. Therefore, it would be a good idea to combine server-side form validation with PHP and client-side form validation with JavaScript in order to avoid unnecessary data sending.

If the email address is valid and subject isn't empty, the script sends the mail and displays the corresponding message. Note how the variable $email is included into the output string.

You can also use this script to implement the safe "Contact Us" function on your website. Your visitors will be able to send you a message, but your email address won't be displayed on the page and spam bots, that parse pages looking for potential email addresses, won't get it.

Just remove the Email text field from the form and replace the first line of the script with something like...
$email = 'YourAddr@YourMail.com';
And, of course, you don't need to validate the email address in this case.
Reply With Quote
  #5 (permalink)  
Old 06-12-2009, 07:09 AM
VIP
 

Join Date: Jun 2009
Posts: 40
Default

thank you very much i will try n verify it
Reply With Quote
  #6 (permalink)  
Old 06-14-2009, 08:17 AM
Junior Member
 

Join Date: Jun 2009
Posts: 4
Default

i have never seen such an admin who will solve the quiries(which are not related to admin side) thanks admin for such a good bit of information hope many will get benefitted from this information
Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On




All times are GMT. The time now is 03:58 PM.


Powered by vBulletin® Version 3.6.10
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.3.0
Ad Management by RedTyger
eXTReMe Tracker