All pastes #581213 Raw Edit

Miscellany

public text v1 · immutable
#581213 ·published 2007-06-21 12:37 UTC
rendered paste body
<!-- appended to settings.xml -->

 <settings prefix="com.ephr">
                <setting name="Mail">
                        <xi:include 
                                href="EphrMailer.xml"
                                parse="xml"
                                xmlns:xi="http://www.w3.org/2001/XInclude"/>
                </setting>
                </settings>

<!-- EphrMailer.xml -->
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<Mailer type="registration">
<from>shoan@shoan.net</from>
<subject>test</subject>
<template type="text">text.tpl</template>
<template type="html">html.tpl</template>
</Mailer>

<!-- ----- -->

In agavi action:

public function executeRead(AgaviRequestDataHolder $rd)
        {

     

                $d = AgaviConfig::get('com.ephr');
                var_dump($d);
}