Textpattern CMS support forum
You are not logged in. Register | Login | Help
- Topics: Active | Unanswered
Re: zem_contact_reborn 4.0.3.20
The fact that the HTML form itself is generated through this plugin is essential to make the plugin work. Having said that, it’s pretty flexible in letting you style the form, so I don’t see any reason why creating the form you referred to would pose a problem.
Offline
#98 2007-11-29 22:01:51
- Logoleptic
- Plugin Author
- From: Kansas, USA
- Registered: 2004-02-29
- Posts: 482
Re: zem_contact_reborn 4.0.3.20
EddieG5 wrote:
Um, okay. I did read the documentation and it doesn’t seem that this is the case. I was asking if I have an existing HTML form, is there a way I can use this plugin to easily power that form … it looks like I can use this plugin and style that any way I want, but I won’t be able to use a form that has already been written and was using a cgi script to power it.
You can use the existing form as a guide for re-creating that form with this plugin’s template tags. You can’t use the plugin without using the tags, however. There’s no way to simply take your current form and have it processed by zem_contact_reborn.
Edit: Looks like Ruud beat me to the punch.
Last edited by Logoleptic (2007-11-29 22:02:28)
Offline
#99 2007-11-29 22:56:25
- EddieG5
- Member
- From: Georgia
- Registered: 2004-03-03
- Posts: 96
Re: zem_contact_reborn 4.0.3.20
Excellent … that makes sense and I appreciate the responses!
Offline
#100 2007-11-30 05:43:39
- simsim
- Member
- Registered: 2006-05-06
- Posts: 70
Re: zem_contact_reborn 4.0.3.20
I’m sorry if this has been asked before, I already did extensive search for an answer but the thread is very long and search functionality on these forums is poor in a way.
Does this plug-in allows multiple recipients? Something like:
<txp:zem_contact to="recipient1@example.com, recipient2@example.com, recipient3@example.com" />
Last edited by simsim (2007-11-30 05:44:38)
Offline
#101 2007-11-30 05:58:09
Re: zem_contact_reborn 4.0.3.20
Offline
#102 2007-11-30 06:12:55
- simsim
- Member
- Registered: 2006-05-06
- Posts: 70
Re: zem_contact_reborn 4.0.3.20
That’s kind of ironic as I was reading just below that & never noticed it! Thanks.
How one could use this in a “Send Article” form where a user may send the article to one or more recipients? The documentation says the to
attribute is required, which is common sense when there’s only one email address. However, in a typical “Send Article” or “Refer A Friend” form with multiple recipients only a first email is mandatory and all other email fields must be optional.
Last edited by simsim (2007-11-30 06:13:13)
Offline
#103 2007-11-30 07:11:48
Re: zem_contact_reborn 4.0.3.20
simsim wrote:
How one could use this in a “Send Article” form where a user may send the article to one or more recipients?
Last edited by colak (2007-11-30 07:12:56)
Yiannis
——————————
NeMe | hblack.art | EMAP | A Sea change | Toolkit of Care
I do my best editing after I click on the submit button.
Offline
#104 2007-11-30 09:39:00
Re: zem_contact_reborn 4.0.3.20
One another project I have following problem. Select menu is created in PHP (not plugin), I have there onchange javascript function that takes values from OPTIONs, split them (price|measure|title) and insert into one input and one hidden (display:none) input. Problem is that when I modified plugin to accept <txp:zem_contact_text disabled="1" />
because I dont want to user can change price. When input have got disabled=“disabled”, value inserted by javascript is not sent. Hope you understand, my english is terrible.
Here is it: Pila Brantice
Job: Plugo – tvorba eshopu
Projects: Czech free fonts
Offline
#105 2007-11-30 09:46:08
Re: zem_contact_reborn 4.0.3.20
That is the correct behaviour, so if you do want the input sent, use readonly="readonly"
instead of disabled="disabled"
… but you’d still have to verify server-side that the price is correct, because users can circumvent the readonly/disabled attributes.
Offline
#106 2007-11-30 10:24:09
Re: zem_contact_reborn 4.0.3.20
Thank you ruud, this is quite good solution.
Job: Plugo – tvorba eshopu
Projects: Czech free fonts
Offline
#107 2007-11-30 16:46:18
- simsim
- Member
- Registered: 2006-05-06
- Posts: 70
Re: zem_contact_reborn 4.0.3.20
colak wrote:
simsim wrote:
How one could use this in a “Send Article” form where a user may send the article to one or more recipients?
I don’t think it’s what I need. By saying “Send Article” I was talking about site visitors’ ability to send articles to their friends not subscribing to newsletters or updates; I’ve already used PHPList for that purpose.
So I guess sending multiple recipients entered by users cannot be achieved with the current version of this plug-in?
Offline
#108 2007-11-30 17:15:51
Re: zem_contact_reborn 4.0.3.20
Oops I understand now:)
To my knowledge it is not possible although there’s mrh_email_article_link which I use for the texts in neme.org. Having said that the plugin can now probably be easily replaced with something even more automated like:
<a href="mailto:?subject=<txp:page_title>&body=http://yoursite.com/<txp:page_url />">Email article link</a>
Yiannis
——————————
NeMe | hblack.art | EMAP | A Sea change | Toolkit of Care
I do my best editing after I click on the submit button.
Offline