Email Help

[php]<?php
$to=($_GET[“to”]);
$subject = ‘SixtyCraft Confirmation Mail’;
$message = ‘Thank you for registration.

Here is your confirmation code: ‘.$_GET[“code”] .’’;
mail($to, $subject, $message);
?>[/php]

http://creeper9207.com/register.php?code=CODE GOES HERE&&mto=EMAIL ADRESS HERE"

Not to sound rude, but just posting code in a thread without stating what the problem is time consuming. I don’t feel like playing Sherlock Holmes with PHP code. ;D

However, just a quick glance I can tell that it won’t work for you don’t have any headers (that is assuming they aren’t somewhere else?).

Post the code in the proper code tags so we can see it better:

[php]echo “Hello, World!”;[/php]

and state what your problem is will help immensely.

Sponsor our Newsletter | Privacy Policy | Terms of Service