のランダムなメールではない送信者を思い付く(アドビミューズを通じて行わ) メールを複数のアドレスにPHPの返信するとエラーに - 私は私のウェブサイト上に設定連絡先フォームを持っている連絡先フォーム
を送信するように設定されこれらのアドレスの1つに自動確認返送メールがあります。 送信元アドレスはフォーム自体に入力された電子メールではなく、Adobe IDに関連付けられた電子メールであることを意味します。すべての返送電子メールを受信しています。また、フォームが個人の送信ではなく単一の電子メールアドレスから来ているようですウェブサイト上のフォームをオフにします。
私はフォーム自体のPHPコードを追跡することができましたが、コーディングに関しては非常に限られた知識しか持っていません。 にはどうすればコードがアドレスまたは「から」repyl-するあなたはemail array
でreplay-to
を追加する場合
は多分
<?php
/*
If you see this text in your browser, PHP is not configured correctly on this hosting provider.
Contact your hosting provider regarding PHP configuration for your site.
PHP file generated by Adobe Muse CC 2015.2.1.352
*/
require_once('form_process.php');
$form = array(
'subject' => 'SSUPPORT FOR EXTENSIONS TO AVOCA BEACH PICTURE THEATRE IN LAND & ENVIRONMENT COURT - DA42661/2012 Submission',
'heading' => 'New Form Submission',
'success_redirect' => '',
'resources' => array(
'checkbox_checked' => 'Selected',
'checkbox_unchecked' => 'Unselected',
'submitted_from' => 'Form submitted from website: %s',
'submitted_by' => 'Visitor IP address: %s',
'too_many_submissions' => 'Too many recent submissions from this IP',
'failed_to_send_email' => 'Failed to send email',
'invalid_reCAPTCHA_private_key' => 'Invalid reCAPTCHA private key.',
'invalid_field_type' => 'Unknown field type \'%s\'.',
'invalid_form_config' => 'Field \'%s\' has an invalid configuration.',
'unknown_method' => 'Unknown server request method'
),
'email' => array(
'from' => '[email protected]',
'to' => '[email protected],[email protected],[email protected],[email protected]'
),
'fields' => array(
'custom_U262562' => array(
'order' => 1,
'type' => 'string',
'label' => 'Name',
'required' => true,
'errors' => array(
'required' => 'Field \'Name\' is required.'
)
),
'Email' => array(
'order' => 2,
'type' => 'email',
'label' => 'Email',
'required' => true,
'errors' => array(
'required' => 'Field \'Email\' is required.',
'format' => 'Field \'Email\' has an invalid email address.'
)
),
'custom_U262553' => array(
'order' => 4,
'type' => 'string',
'label' => 'Message',
'required' => false,
'errors' => array(
)
),
'custom_U262696' => array(
'order' => 3,
'type' => 'string',
'label' => 'Postcode',
'required' => false,
'errors' => array(
)
)
)
);
process_form($form);
?>
あなたが探しているものは以下です:https://forums.adobe.com/thread/1409392 –