Jump to content

[SOLVED] can't display topic title in email


kat32

Recommended Posts

<?php
include('config.php');
$query = mysql_query("SELECT topics.topictitle, users.email FROM topics LEFT JOIN users ON topics.userid=users.userid WHERE topics.topicid=1") or die(mysql_error());
$row = mysql_fetch_array($query);
$Name = "kat"; //senders name
$sender_email = "kat32@yahoo.com"; //senders e-mail adress 
$topictitle=$row['topictitle'];
$email=$row['email'];
$header = "From: ". $Name . " <" . $sender_email . ">\r\n"; 
$subject = "this is the subject";

$qry = mysql_query("SELECT emailmsg FROM emails WHERE emailmsgid=1") or die(mysql_error());
$row = mysql_fetch_array($qry);
$emailmsg=$row['emailmsg'];
$body=$emailmsg;
$sent = mail($email, $subject, $body, $header);	
if($sent){
echo 'sent';
}
?>

 

here's the body of email

 

This is the $topictitle, more text here.

I want to display the topic title after "This is the".

The problem is I can't display the topictitle, please help me. thanks in advance.

 

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.