Images in email problem
Posted on
16th Feb 2014 07:03 pm by
admin
I found this script for sending emails, it works but if the email has <img src="image.jpg"/> it will send this <img src="image.jpg"> < I tried to replace < > < with the right characters but it doesn't work. Any suggestions?
Code: <?php
/* All form fields are automatically passed to the PHP script through the array $HTTP_POST_VARS. */
Did you know?Explore Trending and Topic pages for more stories like this.
$email = $_POST['email'];
$subject = $_POST['subject'];
$message = $_POST['message'];
$slashes= stripslashes($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,$slashes)) {
echo "<h4>Thank you for sending email</h4>";
} else {
echo "<h4>Can't send email to $email</h4>";
}
?>
No comments posted yet
Your Answer:
Login to answer
232
13
Other forums
preg-match with a string and numbers
Hi, I can't get the expression to work for my preg_match, what I'd like is for it to match the strin
asp authentication problem
Hello all,
I want to use the asp authentication (from asp.net configuration) in my web site. there
help with insert
Hi there,
I am trying to insert some data into a database, but for some reason, it is not ins
How to update this array?
I am saving a string that looks this: username1, username2, username3...
into a single cell in a
Trying to add functions to table
I have this list of characters and I'm trying to figure out what I have to do to put the results of
OOP help
okay so i have a class im making it has everything setup i just need to randomize the 2 variables an
Change Age automatically
hi guys . im new to php , is it possible to change age value in mysql automatically when year change
help with mysql_error()
Hi,
I am trying to insert data into a table, but I am not able to insert it. I wanted to see
pull content
I have an existing page, domain/adverts.php which has a good PR. I've just rebuilt my site and the n
Nested (echoed) php running wrong script
Got a problem with a php website I'm creating.
In a nutshell, the first page is entirely html