Jump to content

[HELP] SMTP Issue


teitoklein01

Recommended Posts

I am using Gmail as my mail server in my website. Im not having problems sending emails to my clients but my only problem is that Gmail and other mail servers like yahoo, hotmail, etc. can't detect php scripts? What am i going to do? How can I pass values that I will send to them.

Link to comment
Share on other sites

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">admin@gankgames.com</a><br>

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

<br>
</div>
</body>

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.