نمایش نتایج: از شماره 1 تا 4 , از مجموع 4

موضوع: کمک برای حل ارور Mail delivery failed: returning message to sender

Threaded View

پست قبلی پست قبلی   پست بعدی پست بعدی
  1. #3
    کاربر اخراج شده
    تاریخ عضویت
    Aug 2011
    نوشته ها
    41
    تشکر تشکر کرده 
    1
    تشکر تشکر شده 
    20
    تشکر شده در
    17 پست

    پیش فرض پاسخ : کمک برای حل ارور Mail delivery failed: returning message to sender

    نقل قول نوشته اصلی توسط saeed.0347 نمایش پست ها
    کد اسکریپتو بذارید


    کد:
    <?php
    
    /**
    * PHP Contact Form
    * By Jordan Hatch - http://www.jordanh.net/
    *
    * Copyright (C) 2010 Jordan Hatch
    **/
    
    // You can edit this file completely without worrying about breaking anything.
    // See the descriptions above each option for details on what it does. This is also covered in the documentation.
    // Making a backup of this file is recommended before you begin editing.
    
    // Set the email address which the form should be sent to.
    $config['address']        =    'arash41f441@yahoo.com';
    
    // Set the subject below to control the subject header sent with the email
    // You can use variables set by the form by encasing them with double-square brackets.
    $config['subject']        =    "Message from M: site";
    
    // Sets the content to be used in the email. 
    // You can reference any variables which have been sent by the form by encasing them with double-square brackets.
    // Default variables which can be used are:
    //    [[email]]
    //    [[subject]]
    //    [[content]]
    $config['body']            =    ":ایمیل
    [[email]]
    ________________________
    :موضوع
    [[subject]]
    ________________________
    :توضیحات
    \n\n\"[[content]]\"";
    
    // You can turn on the raw output by setting the variable below to TRUE.
    // This will append all the sent data to the end of your email.
    // Useful if you have lots of fields but don't want to add them all to the body.
    $config['raw']            =    FALSE;
    
    // Set this value to TRUE if you would like a copy of the email to be returned to the sender.
    $config['sender_copy']    =    FALSE;
    
    // Set the email address to display messages from when sending a copy out to the sender.
    $config['sender_email'] = "noreply@codecanyon.net";
    
    // Set the content and subject to be used in the copy emailed to the sender of the message.
    // Only used if 'sender_copy' is set to TRUE.
    // You can reference any variables which have been sent by the form by encasing them with double-square brackets.
    $config['sender_subject'] = "با تشکر از پیام شما";
    $config['sender_body']    =    "Hi [[name]],\n\nبا تشکر از شما برای ارسال پیام بزوردی و در اسرع وقت جواب خود را دریافت می کنید.\n\nبا تشکر";
    
    // Set the location of the success page when the form has been sent.
    // Leave blank to use the built-in notifications on the form, configurable below.
    $config['success_page'] =     '';
    
    // Set the success message used on the form if there is no success page configured.
    $config['success_message']    = 'پیام شما با موفقیت ارسال شد';
    
    
    // Configure the fields to check for on the form with the array below.
    // You must add the fields to the form manually too.
    // Refer to the documentation for details on what these options do.
    $config['fields'] = array();
    
    $config['fields']['email']    = array(
                                    "required"    =>    true,
                                    "type"        =>    'email',
                                );
    $config['fields']['subject'] = array(
                                    "required"    =>    true,
                                );
    $config['fields']['content'] = array(
                                    "required"    =>    true,
                                );
                                
    // You can add custom fields to your form here.
    
    // Example:
    // $config['fields']['phone'] = array( 'type' => 'number' );
    
    
    // You can choose to use a CAPTCHA for spam prevention.
    // To enable it, set the following option to TRUE.
    $config['use_captcha']    =    TRUE;
    
    // Path to the CAPTCHA image file relative to your contact form.
    $config['captcha_path'] =    "includes/captcha.php";
    
    // Path to the CAPTCHA base image relative to the captcha file.
    $config['captcha_base'] =  "assets/captcha.png";
    
    // If the CAPTCHA is disabled, you can choose to use a human verification question.
    // This is a random simple maths question which can partially distinguish between bots and humans.
    $config['use_check']    =    TRUE;
    
    
    
    // ============================
    // ERROR MESSAGES
    // ============================
    
    $config['error_invalid_email'] = "لطفا یک آدرس ایمیل معتبر وارد کنید."; // used if a field fails an email validation
    $config['error_invalid_number'] = "لطفا کد امنیتی را درست وارد نمایید"; // used if a field fails a number validation
    $config['error_invalid_length'] = "زمینه می باشد از طول صحیح نیست"; // used if a field fails a length validation
    
    $config['error_missing_field'] = "لطفا مطمئن شوید که تمامی فیلد ها را پر کرده اید"; // used if a required field is blank
    
    // custom error messages can be defined for fields to overwrite the defaults
    // the fieldname must be inside the key
    // eg 'error_field_email' or 'error_field_name'
    
    $config['error_field_email'] = "لطفا یک ایمیل معتبر وارد نمایید";
    $config['error_field_subject'] = "لطفا موضوع پیام را وارد نمایید";
    $config['error_field_content'] = "لطفا پیام را وارد نمایید";
    
    /** END OF CONFIG FILE **/
    ویرایش توسط Ar@sh : September 17th, 2014 در ساعت 14:18

اطلاعات موضوع

کاربرانی که در حال مشاهده این موضوع هستند

در حال حاضر 1 کاربر در حال مشاهده این موضوع است. (0 کاربران و 1 مهمان ها)

موضوعات مشابه

  1. مشکل با ارور Mail delivery failed: returning message to sender
    توسط foojan در انجمن دايرکت ادمين DirectAdmin
    پاسخ ها: 4
    آخرين نوشته: December 11th, 2014, 11:40
  2. کمک برای حل ارور Mail delivery failed: returning message to sender
    توسط Ar@sh در انجمن سوالات و مشکلات
    پاسخ ها: 3
    آخرين نوشته: September 17th, 2014, 17:36
  3. عدم ارسال ایمیل Mail delivery failed: returning message to sender
    توسط sabair در انجمن سوالات و مشکلات
    پاسخ ها: 17
    آخرين نوشته: August 15th, 2014, 09:17
  4. خطا در ارسال ایمیل Mail delivery failed: returning message to sender
    توسط esultanzada در انجمن سوالات و مشکلات
    پاسخ ها: 1
    آخرين نوشته: April 25th, 2013, 04:15
  5. Mail delivery failed: returning message to sender
    توسط LinuxHD در انجمن سوالات و مشکلات
    پاسخ ها: 4
    آخرين نوشته: April 9th, 2012, 20:42

مجوز های ارسال و ویرایش

  • شما نمیتوانید موضوع جدیدی ارسال کنید
  • شما امکان ارسال پاسخ را ندارید
  • شما نمیتوانید فایل پیوست کنید.
  • شما نمیتوانید پست های خود را ویرایش کنید
  •