lalina Posted December 29, 2008 Share Posted December 29, 2008 Hello, I really really need your help. This is the form I am using http://cac.edu.ge/high_school_eng/ganacxadi_el.php and this is the process code <?php $myemail = "[email protected]"; $subject = "Application"; $na = trim($_POST['na']); $adgili = $_POST['adgili']; $a1 = $_POST['a1']; $a2 = $_POST['a2']; $a3 = trim($_POST['a3']); $a4 = $_POST['a4']; $work1 = $_POST['work1']; $work2 = $_POST['work2']; $work3 = $_POST['work3']; $t1 = $_POST['t1']; $t2 = $_POST['t2']; $t3 = $_POST['t3']; $tn1 = $_POST['tn1']; $tn2 = $_POST['tn2']; $tn3 = $_POST['tn3']; $s1 = $_POST['s1']; $s2 = $_POST['s2']; $st1 = $_POST['st1']; $st2 = $_POST['st2']; $x1 = $_POST['x1']; $x2 = $_POST['x2']; $u1 = $_POST['u1']; $u2 = $_POST['u2']; $p1 = $_POST['p1']; $p2 = $_POST['p2']; $saidan2 = $_POST['saidan2']; $end = $_POST['end']; $RadioGroup1 = $_POST['RadioGroup1']; $list1 = $_POST['list1']; $message = "Application Name and Surname: $na Date and Place of Birth: $adgili Contact Details: Address: $a1 Telephone: $a2 E-Mail: $a3 Program: $RadioGroup1 Work: Name of Organization: Time of Work: Post: $work1 $t1 $tn1 $work2 $t2 $tn2 $work3 $t3 $tn3 Education: Name of College: Time of Study: Degree, Qualification: Faculty/Specialization: $s1 $st1 $x1 $p1 $s2 $st2 $x2 $p2 Foreign Language: $u1 Level: $list1 Computer Skills: $u2 How did you find out about CAC? ? $saidan2 Date: $end"; mail($myemail, $subject, $message, "From: $a3"); echo "Application has been successfully sent"; ?> Everything is working just fine. Only thing is, I need some of the text ("Education:" for instance) to be bold or bigger when it comes to the mail. Is there any way of doing it? Any help is appreciated Link to comment https://forums.phpfreaks.com/topic/138725-php-form-process-help/ Share on other sites More sharing options...
redarrow Posted December 29, 2008 Share Posted December 29, 2008 Use normal html code. <font size=''> or <h1> ect ect ect You might as well look at my sig for the mail code it will help. you need mail headers in that code. Link to comment https://forums.phpfreaks.com/topic/138725-php-form-process-help/#findComment-725255 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.