How can i send an auto reply with form content to sender?

Hai!
I'm new to website building, but i already came a long way
i made a form and i like to send a auto reply with the form content (if that isnt too difficult) to the person who filled it in.
The form i made is in PHP (coding i copied partly from someone from the internet .)
You can see the from at: http://vinddit.nl/vindditnu%20php%20version.php
My PHP coding so far
<?php
// Set email variables
$email_to = '[email protected]';
$email_subject = 'Aanvraag - VINDDIT NU!';
// Set required fields
$required_fields = array('Voornaam','email','Achternaam','Plaats');
// set error messages
$error_messages = array(
          'Voornaam' => 'Vul hier uw voornaam in a.u.b.',
          'email' => 'Vul hier een geldig email adres in a.u.b.',
          'Achternaam' => 'Vul hier uw achternaam in a.u.b.',
          'Plaats' => 'Vul hier uw woonplaats in a.u.b.'
// Set form status
$form_complete = FALSE;
// configure validation array
$validation = array();
// check form submittal
if(!empty($_POST)) {
          // Sanitise POST array
          foreach($_POST as $key => $value) $_POST[$key] = remove_email_injection(trim($value));
          // Loop into required fields and make sure they match our needs
          foreach($required_fields as $field) {
                    // the field has been submitted?
                    if(!array_key_exists($field, $_POST)) array_push($validation, $field);
                    // check there is information in the field?
                    if($_POST[$field] == '') array_push($validation, $field);
                    // validate the email address supplied
                    if($field == 'email') if(!validate_email_address($_POST[$field])) array_push($validation, $field);
          // basic validation result
          if(count($validation) == 0) {
                    // Prepare our content string
                    $email_content = 'New Website Comment: ' . "\n\n";
                    // simple email content
                    foreach($_POST as $key => $value) {
                              if($key != 'submit') $email_content .= $key . ': ' . $value . "\n";
                    // if validation passed ok then send the email
                    mail($email_to, $email_subject, $email_content);
                    // Update form switch
                    $form_complete = TRUE;
function validate_email_address($email = FALSE) {
          return (preg_match('/^[^@\s]+@([-a-z0-9]+\.)+[a-z]{2,}$/i', $email))? TRUE : FALSE;
function remove_email_injection($field = FALSE) {
   return (str_ireplace(array("\r", "\n", "%0a", "%0d", "Content-Type:", "bcc:","to:","cc:"), '', $field));
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
          <title>Aanvraag formulier</title>
          <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
          <link href="style.css" rel="stylesheet" type="text/css" />
    <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/mootools/1.3.0/mootools-yui-compressed.js"></script>
    <script type="text/javascript" src="validation/validation.js"></script>
          <script type="text/javascript">
var nameError = '<?php echo $error_messages['fullname']; ?>';
                    var emailError = '<?php echo $error_messages['email']; ?>';
                    var commentError = '<?php echo $error_messages['comment']; ?>';
function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
    </script>
<style type="text/css">
</style>
</head>
<body onload="MM_preloadImages('icons/x.png')">
<p> </p>
<p>
  <?php if($form_complete === FALSE): ?>
</p>
    <form action="vindditnu php version.php" method="post" enctype="application/x-www-form-urlencoded" name="Form"  id="commentsform">
    <h1><img src="icons/vinddit3.gif" width="220" height="80" alt="logo" /></h1>
    <h1>Wat zoekt u?:</h1>
                 <table width="690" border="0">
        <tr>
          <td>In welke categorie zoekt u?*</td>
          <td colspan="3"><select name="Ophalen_verzenden" id="Ophalen_verzenden">
            <option selected="selected">Meubels </option>
            <option>Witgoed </option>
            <option>Woon accesoires </option>
            <option>Kleding </option>
            <option>Schoenen </option>
            <option>Mode accesoires </option>
            <option>Speelgoed </option>
            <option>Boeken, tijdschriften, papierwaren </option>
            <option>Overig </option>
          </select></td>
        </tr>
        <tr>
          <td>Kleur:* </td>
          <td colspan="3"><select name="kleuren" id="kleuren">
            <option>Blauw</option>
            <option>Rood</option>
            <option>WIt</option>
            <option>Zwart</option>
            <option>Beige</option>
            <option>Bruin</option>
            <option>Geel</option>
            <option>Oranje</option>
            <option>Rood</option>
            <option>Metallic (Bijv. Zilver/Goud/Brons/Koper</option>
            <option>Meerkleurig</option>
            <option selected="selected">Overig/ N.v.t</option>
          </select></td>
        </tr>
        <tr>
          <td>Merk: </td>
          <td colspan="3"><input name="Merk" type="text" id="Merk5" value="<?php echo isset($_POST['Merk'])? $_POST['Merk'] : ''; ?>" />
            <?php if(in_array('Merk', $validation)): ?>
            <span class="error"><?php echo $error_messages['Merk']; ?></span>
            <?php endif; ?></td>
        </tr>
        <tr>
          <td>Type/Model:</td>
          <td colspan="3"><input type="text" name="type" id="type" value="<?php echo isset($_POST['type'])? $_POST['type'] : ''; ?>" />
            <?php if(in_array('type', $validation)): ?>
            <span class="error"><?php echo $error_messages['type']; ?></span>
            <?php endif; ?></td>
        </tr>
        <tr>
          <td>Materiaal: </td>
          <td colspan="3"><input name="Materiaal" type="text" id="Materiaal" value="<?php echo isset($_POST['Materiaal'])? $_POST['Materiaal'] : ''; ?>" />
            <?php if(in_array('Materiaal', $validation)): ?>
            <span class="error"><?php echo $error_messages['Materiaal']; ?></span>
            <?php endif; ?></td>
        </tr>
        <tr>
          <td>Maat: </td>
          <td colspan="3"><input type="text" name="Maat" id="Maat" value="<?php echo isset($_POST['Maat'])? $_POST['Maat'] : ''; ?>" />
            <?php if(in_array('Maat', $validation)): ?>
            <span class="error"><?php echo $error_messages['Maat']; ?></span>
            <?php endif; ?></td>
        </tr>
        <tr>
          <td>Conditie*:</td>
          <td colspan="3"><select name="conditie" id="conditie" >
            <option>Zo goed als nieuw</option>
            <option>Nieuw</option>
            <option>Bebruikt</option>
            <option selected="selected">Geen voorkeur </option>
          </select></td>
        </tr>
        <tr>
          <td>Ophalen/Verzenden:*</td>
          <td colspan="3"><select name="ophalen" id="ophalen">
            <option>Ophalen</option>
            <option>Verzenden</option>
            <option>N.v.t</option>
            <option>Geen voorkeur </option>
          </select></td>
        </tr>
        <tr>
          <td>Prijs Min:</td>
          <td><input name="prijsmin" type="text" id="prijsmin" size="10" value="<?php echo isset($_POST['prijsmin'])? $_POST['prijsmin'] : ''; ?>" />
            <?php if(in_array('prijsmin', $validation)): ?>
            <span class="error"><?php echo $error_messages['prijsmin']; ?></span>
            <?php endif; ?></td>
          <td>Prijs Max:</td>
          <td><input name="Prijs" type="text" id="Prijs" size="10" value="<?php echo isset($_POST['Prijs'])? $_POST['Prijs'] : ''; ?>" />
            <?php if(in_array('Prijs', $validation)): ?>
            <span class="error"><?php echo $error_messages['Prijs']; ?></span>
            <?php endif; ?></td>
        </tr>
      </table>
      <h1>Opmerkingen:</h1>
      <table width="690" border="0">
        <tr>
          <td height="25">Opmerkingen:</td>
          <td rowspan="2"><textarea name="Opmerkingen" cols="67" rows="10" id="Opmerkingen"><?php echo isset($_POST['Opmerkingen'])? $_POST['Opmerkingen'] : ''; ?></textarea>
            <?php if(in_array('Opmerkingen', $validation)): ?>
            <span class="error"><?php echo $error_messages['Opmerkingen']; ?></span>
            <?php endif; ?></td>
        </tr>
        <tr>
          <td height="78"> </td>
        </tr>
      </table>
      <h1>Uw Gegevens:</h1>
      <table width="690" border="0">
        <tr>
          <td>Voornaam/Voorletters*:</td>
          <td><input type="text" name="Voornaam" id="Voornaam" class='invul' value="<?php echo isset($_POST['Voornaam'])? $_POST['Voornaam'] : ''; ?>" />
            <?php if(in_array('Voornaam', $validation)): ?>
            <span class="error"><?php echo $error_messages['Voornaam']; ?></span>
            <?php endif; ?></td>
          <td>Achternaam:* </td>
          <td><input type="text" name="Achternaam" id="Achternaam" class='invul' value="<?php echo isset($_POST['Achternaam'])? $_POST['Achternaam'] : ''; ?>" />
            <?php if(in_array('Achternaam', $validation)): ?>
            <span class="error"><?php echo $error_messages['Achternaam']; ?></span>
            <?php endif; ?></td>
        </tr>
        <tr>
          <td>Straatnaam:</td>
          <td><input type="text" name="Straat" id="Straat" class='invul' value="<?php echo isset($_POST['Straat'])? $_POST['Straat'] : ''; ?>" />
            <?php if(in_array('Straat', $validation)): ?>
            <span class="error"><?php echo $error_messages['Straat']; ?></span>
            <?php endif; ?></td>
          <td>Huisnummer:</td>
          <td><input name="Huisnummer" type="text" id="Huisnummer" class='invul' size="10" value="<?php echo isset($_POST['Huisnummer'])? $_POST['Huisnummer'] : ''; ?>" />
            <?php if(in_array('Huisnummer', $validation)): ?>
            <span class="error"><?php echo $error_messages['Huisnummer']; ?></span>
            <?php endif; ?></td>
        </tr>
        <tr>
          <td>Postcode:</td>
          <td><input type="text" name="Postcode" id="Postcode" class='invul' value="<?php echo isset($_POST['Postcode'])? $_POST['Postcode'] : ''; ?>" />
            <?php if(in_array('Postcode', $validation)): ?>
            <span class="error"><?php echo $error_messages['Postcode']; ?></span>
            <?php endif; ?></td>
          <td>Plaats:* </td>
          <td><input type="text" name="Plaats" id="Plaats" class='invul' value="<?php echo isset($_POST['Plaats'])? $_POST['Plaats'] : ''; ?>" />
            <?php if(in_array('Plaats', $validation)): ?>
            <span class="error"><?php echo $error_messages['Plaats']; ?></span>
            <?php endif; ?></td>
        </tr>
        <tr>
          <td>Email Adres:*</td>
          <td colspan="3"><input type="text" name="email" id="email" class='invul' value="<?php echo isset($_POST['email'])? $_POST['email'] : ''; ?>" />
            <?php if(in_array('email', $validation)): ?>
            <span class="error"><?php echo $error_messages['email']; ?></span>
            <?php endif; ?></td>
        </tr>
        <tr>
          <td>Telefoonnummer:</td>
          <td colspan="3"><input name="Telefoon" type="text" id="Telefoon" class='invul' value="<?php echo isset($_POST['Telefoon'])? $_POST['Telefoon'] : ''; ?>" />
            <?php if(in_array('Telefoon', $validation)): ?>
            <span class="error"><?php echo $error_messages['Telefoon']; ?></span>
            <?php endif; ?></td>
        </tr>
      </table>
      <p>
        <label for="Straat"></label>
        <label for="Huisnummer"><br />
        </label>
        <input type="submit" name="Submit" id="Submit" value="Verstuur" />
               <input type="reset" name="Reset" id="Reset" value="Wissen" />
      </p>
    </form>
    <?php else: ?>
    <div class="bedankt">
      <p>Bedankt voor uw aanvraag!</p>
      <p>Wij zullen uw aanvraag zo spoedig mogelijk behandelen. Meestal duurt dit 2 a 3 werkdagen.</p>
      <p><img src="icons/vinddit3.gif" width="220" height="80" alt="logo" /></p>
</div>
    <p>
      <script type='text/javascript'>
setTimeout("ourRedirect()", 5000)
function ourRedirect() {
      </script>
      <?php endif; ?>
</body>
</html>
and .JS
window.addEvent('domready', function() {
          // Get the form
          var form = $('comments_form');
          //  if the form is found...
          if (form) {
                    // obtain error fields
                    var name = $('fullname');
                    var email = $('email');
                    var comment = $('comment');
                    // Set the default status
                    var isValid = true;
                    // input error function for the error messages
                    var addError = function (field, msg) {
                              field.addClass('error'); // Add error class to field
                              var error = field.getParent().getElement('span') || new Element('span', {'class': 'error'}); // add error message if not already placed
                              error.set('text', msg); // error text msg
                              error.inject(field, 'after'); // Insert error message after field
  // detach error function used to delete any error messages and remove the error class
                    var removeError = function (field) {
                              field.removeClass('error'); // Remove error class from form fields
                              var error = field.getParent().getElement('span'); // find any existing error messages
  // destroy if error message
                              if (error) {
                                        error.destroy();
//  insert submit form event
                    form.addEvent('submit', function (e) {
                              // Test name length
                              if (name.get('value').length === 0) {
                                        isValid = false;
                                        addError(name, nameError);
                              } else {
                                        isValid = true;
                                        removeError(name);
// check email length
                              if (email.get('value').length === 0) {
                                        isValid = false;
                                        addError(email, emailError);
                              // check email validity
                              } else if (!email.get('value').test(/^([a-zA-Z0-9\+_\-]+)(\.[a-zA-Z0-9\+_\-]+)*@([a-zA-Z0-9\-]+\.)+ [a-zA-Z]{2,6}$/)) {
                                        isValid = false;
                                        addError(email, emailError);
                              } else {
                                        isValid = true;
                                        removeError(email);
                // check comment length
                              if (comment.get('value').length === 0) {
                                        isValid = false;
                                        addError(comment, commentError);
                              } else {
                                        isValid = true;
                                        removeError(comment);
                              // If form invalid then stop event happening
                              if (!isValid) {
                                        e.stop();

lisavs12686 wrote:
Whould it also be possible to send the sender the submited data (looking like the filled in form or so)?
not really nessecary but whould be a nice  jextra
You can but you would need to send it as an html email which is much more complicated.
What you would do is build a page/table construction like below. You would need to use the php variables to echo out the information in the <td></td> cells (example below).
$reply = $_POST['email'];
$from = '[email protected]';
$replysubject = "Auto-Reply: Website Name";
$headers  = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
$headers .= "From: $from\r\nReply-to: $reply";
$replymessage = '
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Comments from Website</title>
</head>
<body>
<table>
<tr>
<td bgcolor="#ffffff" style="font-family: verdana, arial, helvetica, sans-serif; font-size: 13px; padding: 10px 15px;">Name: </strong>'.$name.'
</td>
</tr>
</table>
</body>
</html>';
mail($reply, $replysubject, $replymessage, $headers);

Similar Messages

  • How can I set up auto reply on Mozilla Thunderbird email?

    I can't seem to set up auto reply for my email. I need to do this because I will be away from my computer for over a month.

    Please look at what your email provider can offer.
    To do it using Thunderbird, you'll need to leave it running and connected while you're gone. Much better to use someone else's server.

  • How can I update a Site Column with the content of an array with javascript CSOM?

    I'm relative new to Sharepoint 2013, I'm trying to update the content of a Site column with the content of an array, I can retrieve and visualize the content of my site column, the user is able to change and save the necessary part and the changes are
    saved into an array, now I have to update the content of the site column with the content of the array, but for some kind of reasons I can't accomplish that, any suggestion/example? This is my code so far to retrieve, visualize the site column and store the
    mofication into my array.
        <body>
                <select id="dropdown" name="dropdown" onchange="optSelect()">
                    <option value="EngineType_Cylinders">EngineType_Cylinders</option>
                    <option value="EngineType_EngineCycle">EngineType_EngineCycle</option>
                    <option value="EngineType_EngineFamily">EngineType_EngineFamily</option>
                    <option value="EngineType_Euro">EngineType_Euro</option>
                    <option value="EngineType_FamilyEvolution">EngineType_FamilyEvolution</option>
                    <option value="EngineType_GasEmissionLevel">EngineType_GasEmissionLevel</option>
                    <option value="EngineType_Power">EngineType_Power</option>
                    <option value="EngineType_PowerSupply">EngineType_PowerSupply</option>
                    <option value="EngineType_Use">EngineType_Use</option>
                </select><br />
                <textarea id="textareadisplay" rows="25" cols="23"></textarea><br />
                <input type ="button" value="Update values" onclick="addItemsToColumns()" />
            </body>
    My Javascript
        $(function () {
            SP.SOD.executeOrDelayUntilScriptLoaded(Function.createDelegate(this, function () {
               var select = document.getElementById('dropdown').value;
                console.log(select);
                getSiteColumns(select);
            }), 'SP.js');
        var fieldChoice;
        var choices;
        var addFields = [];
        var slc;
        var clientContext;
        function optSelect() {
            slc = document.getElementById('dropdown').value;
            getSiteColumns(slc);
        function getSiteColumns(selection) {
           clientContext = SP.ClientContext.get_current();
            if (clientContext != undefined && clientContext != null) {
                var web = clientContext.get_web();
                fieldChoice = clientContext.castTo(web.get_availableFields().getByTitle(selection), SP.FieldChoice);
                clientContext.load(this.fieldChoice);
                clientContext.executeQueryAsync(Function.createDelegate(this, this.OnLoadSuccess), Function.createDelegate(this, this.OnLoadFailed));
        function OnLoadSuccess(sender, args) {
            choices = fieldChoice.get_choices();
            var textarea = document.getElementById("textareadisplay");
            textarea.value = choices.join("\n");
        function OnLoadFailed(sender, args) {
            alert('Request failed. ' + args.get_message() + '\n' + args.get_stackTrace());
        function addItemsToColumns() {
            clientC = SP.ClientContext.get_current();
            var arrayForUpdate = $('#textareadisplay').val().split('\n');
            fieldChoice.set_item(, arrayForUpdate);
            fieldChoice.update();
            clientContext.executeQueryAsync(function () { }, function () { });
        function OnUpdateSuccess(sender, args) {
            var newchoices = fieldChoice.get_choices();
    My problem is on the function addItemsToColumns() please help! Thanks in advance.

    Let's look at your stylesheet -
    <style type="text/css">
    body {
    background-image: url(assets/images/Business%20Men%20In%20Reception%20Col.2.jpg);
    background-repeat: no-repeat;
    background-color: #003;
    margin-left:auto;
    margin-right:auto;
    position: relative;
    width: 960px;
    It's a good idea not to use spaces or any punctuation in your filenames when working for the web.
    #header {
    margin-left:auto;
    margin-right:auto;
    position: relative;
    width: 960px;
    #heading {
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: 36px;
    font-style: italic;
    font-variant: normal;
    margin-left:auto;
    margin-right:auto;
    There's no need to specify the default values (font-variant:normal) or to specify auto margins for any block element without an explicitly defined width. And wouldn't it make more sense to put the font style on the body tag, where it will inherit into the rest of the page than to restate it as you have done in the next rule?
    #bodytext {
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: 18px;
    line-height: 25px;
    font-variant: normal;
    width: 300px;
    #container {
    width: 960px;
    position: relative;
    margin-left:auto;
    margin-right:auto;
    .rightimg {
    float: right;
    margin-left: auto;
    padding-right: 40px;
    #heading #navbar ul li {
    padding: 30px;
    </style>
    Margin-left:auto can't work without knowing what the width of the element is....  Keep your CSS lean and targeted - it will help you to debug your layouts.

  • How can I replace my iTunes Library with the contents of my iPod, including the playlists?

    I tried transferring the purchases, but it didn't move my playlists over. I have also tried backing my old library up to a disc, and putting it in my new computer, but it still didn't transfer my playlists.
    Is there any way I can transfer my old itunes library from my old computer to my new computer, including the playlists?
    I have heard people talk about replacing itunes with the contents of the ipod, but I'm not sure how to do it.

    check out this post by Zevoneer.
    if you have an iPod Touch, there are PhoneView and iRip.
    as for playlists, check out the posts by Chris CA in this discussion.

  • How can I set up auto fill for forms on new PC with Windows 7

    I cannot find any place on the Firefox browser to add my basic contact information for filling out forms.

    I cannot find any place on the Firefox browser to add my basic contact information for filling out forms.

  • How to Sandbox test an auto-reply e-mail from Paypal after purchase success, and send one yourself?

    Hi, I have read detail here - https://www.paypal-community.com/t5/How-to-use-PayPal-Archive/Auto-Reply/m-p/9339 ...but need to know how to test that a reply has gone out to an e-mail address after purchase, using Sandbox?   Obviously I'm using random e-mail address for buyer and business Sandbox accounts, so is there a way to force the e-mail reply to a working e-mail address to check? ----- Also, what PHP code do I need to write after ipn success/validation to send an e-mail myself to the customer? Thanks! Ash

    lisavs12686 wrote:
    Whould it also be possible to send the sender the submited data (looking like the filled in form or so)?
    not really nessecary but whould be a nice  jextra
    You can but you would need to send it as an html email which is much more complicated.
    What you would do is build a page/table construction like below. You would need to use the php variables to echo out the information in the <td></td> cells (example below).
    $reply = $_POST['email'];
    $from = '[email protected]';
    $replysubject = "Auto-Reply: Website Name";
    $headers  = 'MIME-Version: 1.0' . "\r\n";
    $headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
    $headers .= "From: $from\r\nReply-to: $reply";
    $replymessage = '
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <title>Comments from Website</title>
    </head>
    <body>
    <table>
    <tr>
    <td bgcolor="#ffffff" style="font-family: verdana, arial, helvetica, sans-serif; font-size: 13px; padding: 10px 15px;">Name: </strong>'.$name.'
    </td>
    </tr>
    </table>
    </body>
    </html>';
    mail($reply, $replysubject, $replymessage, $headers);

  • Email messages from my icloud account update on all my devices showing if they have been read and if a reply has been sent.  This does not happen with my tinyworld (TalkTalk) email account.  Can I (how can I) get this to work with TinyWorld?

    Email messages from my icloud account update on all my devices showing if they have been read and if a reply has been sent.  This does not happen with my tinyworld (TalkTalk) email account.  Can I (how can I) get this to work with TinyWorld?

    You have to look at the email protocol being used.  the Apple email system uses IMAP, does Tinyworld use IMAP or POP?
    Does the email system permit delivery receipts to be requested?
    Just some of the things one needs to determine from the information provided by the email service provider.

  • My outlook is sending two invites in the icloud calandar. How can I stop this? I ony want the email send with my email address not the apple email

    My MS outlook on the PC is sending two invites in the icloud calandar. How can I stop this? I ony want the email send with my email address not the apple email.

    My phone is the 4.  Not the 4s. And I went there but it's nowhere the option to delete from server.
    I only see: ask before deleting and it's on. 

  • How can I set up auto respond for email

    How can I set up auto respond for email?

    Hey there jimmac169,
    It sounds like you want to have the Mail app automatically reply to emails that come in. You can do this in the app itself, but in order for the function to work, Mail needs to be open. Take a look at this info from the following article:
    Mail (Yosemite): Reply to, forward, or redirect messages
    Automatically reply to or forward messages
    Mail must be open before it can automatically forward or reply to messages. If you want to send automatic replies when Mail isn’t open—like when you’re on vacation—check with the provider of your email account. 
    Choose Mail > Preferences, then click Rules.
    Click Add Rule, then type a name for the rule.
    Indicate whether any or all of the conditions must be true for the rule to be applied.
    Set the conditions that determine which messages to automatically reply to or forward.
    Choose options from the “Perform the following actions” pop-up menu.
    Forward messages: Choose Forward Message from the first pop-up menu, then enter the email addresses where you want to receive the forwarded messages. Click Message, then enter any text you want to include with the forwarded message. For example, you could explain that you’re automatically forwarding messages. 
    Reply to messages: Choose “Reply to Message” from the first pop-up menu, click “Reply message text,” then enter your reply. Mail includes the full text of the original message in your reply. 
    Click OK.
    Carefully consider the rules you create. If they’re too broad, messages can be sent inadvertently or create loops (replies to replies you sent). If possible, test the rules. 
    Thank you for using Apple Support Communities.
    All the very best,
    Sterling

  • How can I recover my old account with a new one?

    Hi, my hotmail account it was hacked, I can't have acces to my adobe account anymore.
    How can I get acces to my old account with a new Adobe ID?
    I'm already subscribed to creative cloud and I can't have acces to my account and upgrade my products.
    what can I do?
    Thanks

    Thanks Romshina
    I read the link you send me and thanks, but the thing is that I still can't get into my Adobe Id, because when I try they ask me to reset my password in an email they will send me to my old account and there is the problem, because I don't have acces to that old acount, [email protected]
    now this is my new email, because the las one it was hacked and I just can't get back to it.
    So I would like to have access to my account and update this new email account, to have acces to my CC account.
    Thanks
    Date: Fri, 27 Dec 2013 06:51:15 -0800
    From: [email protected]
    To: <Removed by Moderator>
    Subject: Re: How can I recover my old account with a new one? How can I recover my old account with a new one?
        Re: How can I recover my old account with a new one?
        created by Romsinha in Adobe Creative Cloud - View the full discussion
    Hi Guillermo Castellanos,
    Please refer the knowledge base article: http://helpx.adobe.com/x-productkb/policy-pricing/account-password-sig n-faq.html.
    Regards,
    Romit Sinha
    Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/5959347#5959347
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: Re: How can I recover my old account with a new one?
    To unsubscribe from this thread, please visit the message page at Re: How can I recover my old account with a new one?. In the Actions box on the right, click the Stop Email Notifications link.
               Start a new discussion in Adobe Creative Cloud at Adobe Community
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

  • How do I create an auto reply for one person in my buddy list?

    I want to be able to have an automatic reply to one person in my buddy list whenever they IM me so that i dont have to reply myself. I dont want to block them but i sometimes want to be able to just avoid them and so does anyone know any applescript that i can run whenever they send me a message??

    Hi,
    In the Buddy List highlight a Buddy.
    Use the CMD and I keys together (Get Info)
    This brings up their Info Card.
    Select Actions  (Same as Alerts in the Preferences In Fact some versions do Read  "Alerts" )
    Change the top item to Invite (Text)
    Select the AppleScript option.
    Set the Script to be Auto-Decline.
    This will produce no response on the Buddies end.
    For that go to the General Section of the Preferences and set  the option to "Auto-Reply with my Away Message"
    This will then send the Away message to the Buddy set in the first bit but to no--one else.
    If you wish to be able to Reply when you have an Available Message up, that is a little more difficult.
    9:19 PM      Thursday; September 29, 2011
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb( 10.6.8)
     Mac OS X (10.6.8),
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • Cannot get new messages to download automatically and auto reply with out of office message have to manually check for new messages to get it to do this

    I am using Mozilla Thunderbird 31.3.0. I know how to create a message filter to set up an auto reply message, but cannot get Mozilla to automatically download new message and auto reply with the message in the filter unless I manually check for new messages, that is the only way to make it work. I have looked online and can't seem to find an answer to this particular issue. According to anything that I have found, I have the correct boxes checked in server settings: check for new messages at startup, automatically check for new messages, check for new messages every x amount of minutes. It's one thing to have to leave my computer on and Thunderbird open to make this work, but to have to manually check for new messages to get the auto response to work defeats the whole purpose of having an auto reply, as I use them for vacations, holidays, etc. I have wondered if there are any security settings that are causing this issue, but if so, I don't know what changes to make to them. Thanks in advance for any help. This is driving me crazy.

    I do find it a bit odd that Thunderbird is not getting mail on schedule, perhaps you have an add-on or anti virus program that prevents that.
    Holding shift while you start Thunderbird will start with add-ons disabled to check if mail come automatically.
    Airmail is right though, use Verizons auto responder. This link might help with that http://www.verizon.com/support/residential/internet/highspeed/account+tools/email+tools/questionsone/85621.htm#
    You say that not having such a setting in Thunderbird is something that needs fixing. This idea comes on the whole because Outlook has such an option. what most people are not aware of it only works with Exchange server. There is no "vacation response" in server mail specifications so every server implements it differently.
    Just as all cars have a radiator, you can not take any radiator and just put it in, they are subtly different even though they perform the same purpose. Same goes for the various vacation responders, They perform the same purpose but they differ between email server software brands.
    Thunderbird leaves it to the server end to expose the functionality, as they are really the only ones who understand what they did. Outlook exposes the option and mostly greys it out.

  • How can i share my itunes purchaes with my wife who is working in Dubai  while I am in UK she is so isolated and this would mean a lot to us

    how can i share my itunes purchaes with my wife who is working in Dubai  while I am in UK she is so isolated and this would mean a lot to us

    Just email it.
    In iTunes, drag the file to the desktop.
    On the desktop, select the file right click Share > email.
    I just want to send my sister one song from my iTunes because its a recording of her daughter when she was 2. She no longer has the file and I only have it saved in my iTunes from a long ago. The only known file is the one I have saved on iTunes.
    You do make regular backups of your computer, correct?
    Use Time Machine?

  • How can i re-activate my ipad with my own ID

    How can i re-activate my ipad with my own ID, pls i need an urgent reply.
    Thanks.

    Are you trying to activate a used iPad? You may not be able to due to being Activation locked. The previous owner did not erase everything.)
    If the iPad was running iOS 7,  iCloud: Find My iPhone Activation Lock in iOS 7
    http://support.apple.com/kb/HT5818
    iCloud: Activation Lock
    http://support.apple.com/kb/PH13695
    Activation Lock: Removing a device from a previous owner’s account
    http://support.apple.com/kb/TS4515
    How to Fix an iPad When It Says It "Could Not Activate"
    http://everydaylife.globalpost.com/fix-ipad-says-could-not-activate-26085.html
     Cheers, Tom

  • How can I compact a MSAccess database with java?

    Hi.
    I have a question (Please Help!!!):
    How can I compact a MSAccess database with java-jdbc? Is it posible?
    Thanks

    MS Access database has a max length limitation of 2.14GB for Access 2000( 1.07G for Access 97), and won't recycle basically space for update/delete sql so tha it's a good idea to use MS Access database for program, which need update/delete frequent ly data. The programmers of HXTT Access(www.hxtt.net) are writing code for CREATE TABLE/DATABASE sql now. If you need a pure Java solution for PACK TABLE/DATABSE urgently in your project, you should send such a requirement to the Support page of www.hxtt.net so that they can schedule complementing such a fucntion. Otherwise, you should pack your databae manually or visit C++ code for Compact an Access Database Programmatically at
    http://www.codeguru.com/Cpp/data/mfc_database/microsoftaccess/article.php/c4327/ , or use Easy Microsoft Access MDB MDE Compactor at http://www.easyhr.com.au/software/easy_mdb_mde_compactor.htm.

Maybe you are looking for

  • Windows does not recognize my Nano.  Is it broken or do I need to reset it.

    I used to have iTunes on a different computer than I use now and haven't tried to connect the nano for several months. Now the new computer does not even recognize my Nano (for example, when I run the iPod updater). When I try to connect, I get the '

  • Address Book entries for members of the same household?

    Has anyone a solution for the problem where you have multiple people living at one address, but you want all their separate work/mobile numbers and email addresses stored for syncing with your phone? For example, I currently have separate entries for

  • Increase in assets' value

    Hi all, i have a problem with some assets which have had an increase in NBV after their depreciation key was changed from LINK to 000. Their were some assets which needed to be removed and while awaiting the approval to do so the users changed the de

  • Last Execution Time

    In the database we have a field called "Software_Last_Execution_Time". How do we actuelly get Last Execution Time stored in this field?

  • AirPort network: HP 1300 printer gets "lost"

    My wife and I have the following setup at home: iBook G3 w/ 10.4.3., AirPort card iBook G4 w/ 10.4.3., AirPort Extreme card Apple AirPort Extreme Base Station (latest software - I think 5.5.1) HP LaserJet 1300 What happens: whenever I connect to the