-
September 17th, 2014, 13:15
#1
کمک برای حل ارور Mail delivery failed: returning message to sender
سلام
داخل سایت من یه اسکریپت هست برای ارسال پیغام توسط کاربر.
ولی وقتی پیغامی از اون طرق ارسال میشه به دست من نمیره و داخل وب میل سی پنل هم که میرم ارور زیر رو نوشته.
چطوری میشه حل کرد این رو؟
اگه هزینه ای هم داره تقدیم میشه.
تشکر
This message was created automatically by mail delivery software.
A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:
irant344c@yahoo.com
SMTP error from remote mail server after end of data:
host mta7.am0.yahoodns.net [63.250.192.45]: 554 5.7.9 Message not accepted for policy reasons. See http://postmaster.yahoo.com/errors/postmaster-28.html
------ This is a copy of the message, including all the headers. ------
From: test@yahoo.com
Reply-To: test@yahoo.com
Message-Id: <E1XUAfG-000Pps-I5@tachar.gatefa.com>
Date: Wed, 17 Sep 2014 13:02:38 +0430
:ایمیل
test@yahoo.com
________________________
:موضوع
tests
________________________
:توضیحات
"پیغام تست"
-
تعداد تشکر ها از Ar@sh به دلیل پست مفید
-
September 17th, 2014 13:15
# ADS
-
September 17th, 2014, 13:24
#2
پاسخ : کمک برای حل ارور Mail delivery failed: returning message to sender
-
-
September 17th, 2014, 13:43
#3
پاسخ : کمک برای حل ارور 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
-
-
September 17th, 2014, 13:45
#4
عضو جدید
پاسخ : کمک برای حل ارور Mail delivery failed: returning message to sender
دوستان ما هم همچین مشکلی رو با ایمیل هایی که از طرف Cloudlinux LVE Manager سرور ارسال میشه داریم. تنظیم شده وقتی که اکانتی بیش از حد مجاز مصرف کرد اطلاع بده که اینجوری ایمیلش بازگشت داده میشه.
اگر کسی راه حلی بلده به ما هم بگه.
-