Textpattern CMS support forum
You are not logged in. Register | Login | Help
- Topics: Active | Unanswered
#613 2009-04-29 11:57:06
- Gallex
- Member
- Registered: 2006-10-08
- Posts: 1,308
Re: zem_contact_reborn 4.0.3.20
tye wrote:
Its in the plugin docs.
from’email@address.com” – specify an email address
specified. same as “to” attribute, correct? (from plugin docs: If specified, the sender’s email address will be placed in the “Reply-To:” field instead.)
from_form=“form name” – I presume you specify whatever you like – I have tested this
specified, from_form=“sender_name”
but how form “sender_name” should look like?
could you please provide your form? i’m not sure what i should write there to get sender name instead of sender e-mail address into inbox e-mail header.
or i get totaly wrong something?
my form:
<txp:zem_contact to="info@aleksandri.ee" from="info@aleksandri.ee" from_form="sender_name" label="Contact us" subject="Teade Aleksandri Hotelli kodulehelt">
<txp:zem_contact_text label="Name:*" break="" /><br/>
<txp:zem_contact_email label="E-mail:*" break="" /><br/>
<txp:zem_contact_textarea cols="33" rows="7" label="Message:" break="" />
<txp:zem_contact_submit label="Send" />
</txp:zem_contact>
Offline
#614 2009-04-29 12:59:32
Re: zem_contact_reborn 4.0.3.20
I havn’t changed anything in the plugin documents as I dont know how to.
The code in my page is:
<txp:zem_contact to=“wildemedia@hotmail.co.uk” form=“contactForm” />
The code in my contactForm form is:
<txp:zem_contact to=“wildemedia@hotmail.co.uk”>
<txp:zem_contact_email label=“Your email address” />
<txp:zem_contact_text label=“Phone” min=“7” max=“15” />
<txp:zem_contact_textarea label=“Your question” />
<txp:zem_contact_submit label=“Send” />
</txp:zem_contact>
and the form is set to a ‘misc’ type of form if this will change anything.
Last edited by WildeMedia (2009-04-29 14:47:39)
Offline
#615 2009-04-29 17:27:22
- els
- Moderator
- From: The Netherlands
- Registered: 2004-06-06
- Posts: 7,458
Re: zem_contact_reborn 4.0.3.20
WildeMedia, have you tried if it works with another email address (not hotmail)? I’ve had the same problems with a hotmail address and switching to another address was the only thing that worked at the time.
Gallex, as far as I know you can only enter an email address as a value for the from
attribute, or in the from_form.
Offline
#616 2009-04-30 09:34:18
- Gallex
- Member
- Registered: 2006-10-08
- Posts: 1,308
Re: zem_contact_reborn 4.0.3.20
Els wrote:
Gallex, as far as I know you can only enter an email address as a value for the
from
attribute, or in the from_form.
that’s a pity…client wants definitetly a sender name to appear on “sender” column in inbox
Offline
#617 2009-04-30 09:38:32
Re: zem_contact_reborn 4.0.3.20
ok it worked now I’ve changed the email address I’m using and it worked but it went into my spam box. Is there no way that I can use Hotmail? Also how do I stop it from going into the spam box?
Offline
#618 2009-04-30 12:03:27
Re: zem_contact_reborn 4.0.3.20
WildeMedia wrote:
Also how do I stop it from going into the spam box?
By creating a rule in your email client based on the title of the email. the reason it goes to the junk is probably because the “from” email is not in your address book.
Yiannis
——————————
NeMe | hblack.art | EMAP | A Sea change | Toolkit of Care
I do my best editing after I click on the submit button.
Offline
#619 2009-04-30 12:21:52
Re: zem_contact_reborn 4.0.3.20
ok ive added it now so it doesnt go into my spam box by simply clicking on ‘not spam’ : )
Offline
#620 2009-05-12 15:41:09
- Katri
- New Member
- From: Finland
- Registered: 2009-05-12
- Posts: 8
Re: zem_contact_reborn 4.0.3.20
Is there a way to do checkbox with other language – so that the recipient email would output something else than “Yes” and “No” ?
I would need them in finnish like “Kyllä” and “Ei”.
Offline
#621 2009-05-12 16:45:29
- els
- Moderator
- From: The Netherlands
- Registered: 2004-06-06
- Posts: 7,458
Re: zem_contact_reborn 4.0.3.20
If you have Finnish installed as the main language, it will output the Finnish ‘yes’ and ‘no’.
Offline
#622 2009-05-13 07:09:05
- Katri
- New Member
- From: Finland
- Registered: 2009-05-12
- Posts: 8
Re: zem_contact_reborn 4.0.3.20
Thank you Els, the finnish language installation helped!
Offline
#623 2009-05-29 21:58:59
Re: zem_contact_reborn 4.0.3.20
hey!
I’m trying to pull some content like the article title in the mail subject and in a secret field
and it’s not working, what I’m geting is: sibject: <txp:title /> – instead of the content.
<txp:zem_contact to=“mymail@myhost.com” from=“my website <mymail@myhost.com>” subject=“message from my website – <txp:title />” label=”“>
<br />
<txp:zem_contact_secret label=“my label” value=”<txp:title />” />
what is the right way to do it please?
Offline
#624 2009-05-30 02:07:58
Re: zem_contact_reborn 4.0.3.20
Use simple quotes when nesting txp tags inside txp tags.
Like this:
<txp:zem_contact to="mymail@myhost.com" from="my website <mymail@myhost.com>" subject='message from my website - <txp:title />' label="">
<br />
<txp:zem_contact_secret label="my label" value='<txp:title />' />
Offline