Jump to content

[HELP] SMTP Issue


teitoklein01

Recommended Posts

This is my code on contents.html and I will just include it to my send.php

 

This is the actualy data that will be displayed on the body of the message..

 

 


<?php session_start(); ?>
<body style="margin: 10px;">
<div style="width: 640px; font-family: Courier New; font-size: 11px;">
<div align="center"><img src="images/gamebanner2.png" style="height: 90px; width: 340px"></div><br>
<br>
<?php 
$eUser = $_SESSION['user'];
$eTitle = $_SESSION['uTitle'];
$eDesc = $_SESSION['uDesc'];
$ePrice = $_SESSION['uPrice'];

echo "Welcome to GankGame, ".$eUser;

?>
</br></br>
Your Game has been uploaded successfully!!<br><br>
Below is the summary of your upload transaction: <br><br><br>

<?php
echo "Game Name: ".$eTitle."</br>";
echo "Game Description: ".$eDesc."</br>";
echo "Game Price: ".$ePrice."</br>";
?>
<br><br>
Your game will be verified in 24 hours for security purposes. After verifying we will going to send you again an email informing you that your game is already active <br><br><br>

Thank you very much!!<br>
<a href "www.gmail.com">[email protected]</a><br>

<?php
echo date("Y/m/d") . "<br />";
unset($_SESSION['uTitle']);
unset($_SESSION['uPrice']);
unset($_SESSION['uDesc']);
?>  

<br>
</div>
</body>

Link to comment
https://forums.phpfreaks.com/topic/229892-help-smtp-issue/#findComment-1184130
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.