Statistics
| Revision:

root / web-presentation / trunk / eneraptor-web-presentation / grails-app / controllers / com / eneraptor / presentation / MailController.groovy @ 92

History | View | Annotate | Download (266 Bytes)

1 92 alexbesir
package com.eneraptor.presentation
2
3
class MailController {
4
5
        def contactMailService
6
7
    def send = {
8
9
                contactMailService.sendContactMail(params.from,params.content)
10
11
                render(text:"<xml>OK</xml>",contentType:"text/xml",encoding:"UTF-8")
12
13
        }
14
15
}