rowruffdesign Posted August 10, 2011 Share Posted August 10, 2011 Guys i made this PHP mailing code but if i use it i dont get a email i tried $to = "mail@gmail.com" (example) but it isnt working Can someone give a tip Thanks <?php //init variables $to = "mail@gmail.com"; $cf = array(); $sr = false; if(isset($_SESSION['cf_returndata'])){ $cf = $_SESSION['cf_returndata']; $sr = true; } ?> <ul id="errors" class="<?php echo ($sr && !$cf['form_ok']) ? 'visible' : ''; ?>"> <li id="info">Er zijn problemen met het versturen van uw bericht</li> <?php if(isset($cf['errors']) && count($cf['errors']) > 0) : foreach($cf['errors'] as $error) : ?> <li><?php echo $error ?></li> <?php endforeach; endif; ?> </ul> <p id="success" class="<?php echo ($sr && $cf['form_ok']) ? 'visible' : ''; ?>">Bedankt voor uw bericht</p> <form method="post" action="process.php"> <label for="name">Naam: <span class="required">*</span></label> <input type="text" id="name" name="name" value="<?php echo ($sr && !$cf['form_ok']) ? $cf['posted_form_data']['name'] : '' ?>" placeholder="Andre Maassen" required autofocus /> <label for="email">Emailadres: <span class="required">*</span></label> <input type="email" id="email" name="email" value="<?php echo ($sr && !$cf['form_ok']) ? $cf['posted_form_data']['email'] : '' ?>" placeholder="123@mail.com" required /> <label for="telephone">Telefoon: </label> <input type="tel" id="telephone" name="telephone" value="<?php echo ($sr && !$cf['form_ok']) ? $cf['posted_form_data']['telephone'] : '' ?>" /> <label for="message">Bericht: <span class="required">*</span></label> <textarea id="message" name="message" placeholder="Typ hier uw bericht" required data-minlength="0"><?php echo ($sr && !$cf['form_ok']) ? $cf['posted_form_data']['message'] : '' ?></textarea> <span id="loading"></span> <input type="submit" value="Verstuur" id="submit-button" /> <p id="req-field-desc"><span class="required">*</span>een verplicht veld</p> </form> <?php unset($_SESSION['cf_returndata']); ?> Quote Link to comment https://forums.phpfreaks.com/topic/244432-problem-with-sending-emails/ Share on other sites More sharing options...
premiso Posted August 10, 2011 Share Posted August 10, 2011 Where are you calling mail at? Quote Link to comment https://forums.phpfreaks.com/topic/244432-problem-with-sending-emails/#findComment-1255445 Share on other sites More sharing options...
rowruffdesign Posted August 10, 2011 Author Share Posted August 10, 2011 well thats just the problem I don't know where to put it Quote Link to comment https://forums.phpfreaks.com/topic/244432-problem-with-sending-emails/#findComment-1255448 Share on other sites More sharing options...
Maq Posted August 10, 2011 Share Posted August 10, 2011 In the future, please place OR tags around your code. Quote Link to comment https://forums.phpfreaks.com/topic/244432-problem-with-sending-emails/#findComment-1255449 Share on other sites More sharing options...
rowruffdesign Posted August 10, 2011 Author Share Posted August 10, 2011 i will Quote Link to comment https://forums.phpfreaks.com/topic/244432-problem-with-sending-emails/#findComment-1255451 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.