Greetings,

I am very new to Radiant. I am an intern for an institution and I don't have
access to certain places on the server. I want to make sure my code is
correct before I write it off as a server issue. I have read the help and
everything Any advice in this matter is greatly appreciated.

Here's the problem:

I am building out a mailer that is being sent to multiple recipients
including ones found in the text boxes of the form itself.
Here's an example of the code I'm working on:

*Body*

<r:mailer:form name="references">
<p><label>Person 1</label> <r:text name="person_one" /></p>
<p><label>Person 1 Email</label> <r:text name="email_one" /></p>
<p><label>Person 2</label> <r:text name="person_two" /></p>
<p><label>Person 2 email</label> <r:text name="email_two" /></p>
<p>
<p><r:submit value="Send Request" /><r:reset value="Clear" /></p>
</r:mailer:form>

*Config*

mailers:
 references:
   from: [EMAIL PROTECTED]
   subject: References
   redirect_to: /references/thank-you
   cc_field: big boss
   recipients:
     - [EMAIL PROTECTED]
     - [EMAIL PROTECTED]
     - [EMAIL PROTECTED]
     - <r:mailer:get value="email_one" />
     - <r:mailer:get value="email_two" />


*email* (not that you really need it, but just in case)

Person 1 <r:get name="person_one" />
Person 1 Email <r:get name="email_one" />
Person 2 <r:get name="person_two" />
Person 2 email <r:get name="email_two" />


I need to get the the value of the email text boxes into the recipients
list. The way I currently have it coded would make sense; however, nothing
is ever sent to either address in those boxes. I have tried several
different ways and have come up empty.

If you have any comments or advice or need more information, please feel
free to contact me. Again, any advice is greatly appreciated. Thank you in
advance.

Autumn Hansen
_______________________________________________
Radiant mailing list
Post:   [email protected]
Search: http://radiantcms.org/mailing-list/search/
Site:   http://lists.radiantcms.org/mailman/listinfo/radiant

Reply via email to