|
fliaigre 916
| Posté : 20-04-2004 21:51
Je voudrais envoyer un formulaire contact (contact2) à une autre adresse que celle indiquée dans les préférences, c'est possible?
Si, oui il faut modifier où et comment?
Merci les as |  Profil www Citation
|
|
developpeur 24581
| |
fliaigre 916
| Posté : 20-04-2004 22:27
Tu veux dire dans contact2.php dans sform/contact ?
Cette ligne : send_email($notify_email, $m->title,$message,"","","html");
A la place de $notify_email, je mets l'adresse du destinataire ?
Et côté syntaxe ?
"adresse@mondomaine.com"?
Au fait les adresses séparées par une, dans les préférences çà ne marche pas, le premier email passe le second reçoit du html brut.
|  Profil www Citation
|
|
developpeur 24581
| |
fliaigre 916
| Posté : 21-04-2004 13:29
Nickel, çà marche !
En fait, j'ai fait
$dest="adresse@domaine.com"
Puis
send_email($dest, $m->title,$message,"","","html");
Et si je veux envoyer le formulaire à plusieurs adresses?
$dest="adresse1@domaine.com,adresse2@domaine.com"
Ou bien?
Et dernière question pour sform, la présentation est-elle obligatoirement verticale, les champs les uns au dessous des autres ou il y a moyen de présenter dans le genre
champ1 champ2
champ3
champ4 champ5
D'avance merci |  Profil www Citation
|
|
developpeur 24581
| Posté : 21-04-2004 21:44
Et si je veux envoyer le formulaire à plusieurs adresses?
$dest="adresse1@domaine.com,adresse2@domaine.com"
==> OUI
Et dernière question pour sform, la présentation est-elle obligatoirement verticale,
==> OUI |  Profil E-mail www Citation
|
|
fliaigre 916
| |
mamour 81
| Posté : 20-06-2004 18:24
Salut,
j'ai lu les informations mais je ne comprend pas tout.
voici ce que j'ai fait dans le fichier contact mais cela ne marche pas amon avis j'ai pas mis les lignes au bon endroit.
<?
/************************************************************************/
br />/* SFORM Extender for NPDS V Contact Example */
/* =========================== */
/* */
/* - 2003 */
/* */
/* This program is free software. You can redistribute it and/or modify */
/* it under the terms of the GNU General Public License as published by */
/* the Free Software Foundation; either version 2 of the License. */
/************************************************************************/
br />/* Dont modify this file is you dont know what you make */
/************************************************************************/
br />
global $ModPath, $ModStart;
$sform_path="modules/sform/";
!include!_once($sform_path."sform.php");
global $m;
$m=new form_handler();
//********************
$m->add_form_title("CONTACT");
$m->add_form_method("post");
$m->add_form_check("true");
$m->add_mess(" * désigne un champ obligatoire ");
$m->add_submit_value("ok");
$m->add_!url(!"modules.php");
$m->add_field("ModStart","",$ModStart,'hidden',false);
$m->add_field("ModPath","",$ModPath,'hidden',false);
br />
/************************************************/
!include!($sform_path."contact/formulaire1.php");
/************************************************/
// Manage the <form>
switch($ok) {
case 'Soumettre':
$m->make_response();
$message=$m->aff_response("white","not_echo","" ;);
global $notify_email;
$message="<html><body>".$message."</body></ html>";
$dest="adresse@xxx.be"
send_email($dest, $m->title,$message,"","","html");
opentable();
echo "<center>Votre demande est prise en compte. Nous y répondrons au plus vite</center>";
closetable();
break;
default:
echo $m->print_form("white");
break;
}
?> |  Profil Citation
|
|
fliaigre 916
| Posté : 23-06-2004 12:37
Citation : mamour
Salut,
j'ai lu les informations mais je ne comprend pas tout.
voici ce que j'ai fait dans le fichier contact mais cela ne marche pas amon avis j'ai pas mis les lignes au bon endroit.
<?
/************************************************************************/
br />/* SFORM Extender for NPDS V Contact Example */
/* =========================== */
/* */
/* 2002 - 2003 */
/* */
/* This program is free software. You can redistribute it and/or modify */
/* it under the terms of the GNU General Public License as published by */
/* the Free Software Foundation; either version 2 of the License. */
/************************************************************************/
br />/* Dont modify this file is you dont know what you make */
/************************************************************************/
br />
global $ModPath, $ModStart;
$sform_path="modules/sform/";
!!include!!_once($sform_path."sform.php");
global $m;
$m=new form_handler();
//********************
$m->add_form_title("CONTACT");
$m->add_form_method("post");
$m->add_form_check("true");
$m->add_mess(" * désigne un champ obligatoire ");
$m->add_submit_value("ok");
$m->add_!!url(!!"modules.php");
$m->add_field("ModStart","",$ModStart,'hidden',false);
$m->add_field("ModPath","",$ModPath,'hidden',false);
/************************************************/
!!include!!($sform_path."contact/formulaire1.php");
/************************************************/
// Manage the |
|