Is it possible to have more then 1 recipient in a emailform ?
Or perhaps a BCC ?
tx,
marc
More recipients
- Oliver Georgi
- Site Admin
- Posts: 9906
- Joined: Fri 3. Oct 2003, 22:22
- Contact:
- Oliver Georgi
- Site Admin
- Posts: 9906
- Joined: Fri 3. Oct 2003, 22:22
- Contact:
Hi,
If the wish is very big ...such as in my case you can hack the code in phpwcms/include/inc_act/act_formmailer.php.
For every form our customer wanted a bcc. Despite the fact that it isn't possible to create in within phpWCMS, I decided to hack to the code.
It works in my case;
Look for:
$from = "From: ".$recipient."\nReply-To: ".$recipient."\n"; (line no 235)
And change that into:
$from = "From: ".$recipient."\nReply-To: ".$recipient."\nBcc: info@yourdomain.coml\n";
No warranty given
Johan.
If the wish is very big ...such as in my case you can hack the code in phpwcms/include/inc_act/act_formmailer.php.
For every form our customer wanted a bcc. Despite the fact that it isn't possible to create in within phpWCMS, I decided to hack to the code.
It works in my case;
Look for:
$from = "From: ".$recipient."\nReply-To: ".$recipient."\n"; (line no 235)
And change that into:
$from = "From: ".$recipient."\nReply-To: ".$recipient."\nBcc: info@yourdomain.coml\n";
No warranty given
Johan.