Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a Controller action and sending a mail in it with something like:

mailService.sendMail {
    ...
    g.render(template: "mailtemplate")
}

in this template file is called "_mailtemplate.gsp" I use

<a href="<g:createLink controller="servicecontroller" action="confirm"/>">linktext</a>

But the output is "http://action"... that's it! I would expect to have http://www.example.com/action". If I use the same createLink tag in a gsp which is not a template it's working (by the way, email is working fine and all the other stuff in this template is rendered well).

Have you any suggestions on that? Thank you very much in advance.

Cheers,

Marco

share|improve this question

2 Answers

up vote 2 down vote accepted

Probably you need absolute link:

<a href="<g:createLink controller="servicecontroller" action="confirm" absolute="true"/>">linktext</a>

Btw, you can also use ${} syntax there, like:

<a href="${g.createLink(controller: "servicecontroller", action: "confirm", absolute: true)}">linktext</a>
share|improve this answer
oh I forgot to write, this is probably the solution but in this case I must specify a serverURL in config file, but I want it dynamically, you know. I can not imagine why the createLink is not working in templates?! :-( – grailsInvas0r Nov 24 '11 at 9:27
It's working. I does everything correctly. You've asked for relative url (by default) - you have relative url. But for your email client - it will be relative to email. Not original websites (email client even dont't know that this email was from an website) – Igor Artamonov Nov 24 '11 at 9:30
ah okay. I see... okay thank you very much! – grailsInvas0r Nov 24 '11 at 9:48
btw: you do not need g for the namespace g: ${create...}. – crudolf Nov 24 '11 at 10:08
hmmm... now I figured out some new problems. I don't want to use the absolute:true argument. Because that must work that a URL can be relative to the current path... I put the createLink function in a normal GSP-file, I got the same "unexpected" URL, only "/servicecontroller/confirm" - nothing else. That's really strange :-( – grailsInvas0r Nov 24 '11 at 18:28
show 4 more comments

QUOTE: I must specify a serverURL in config file, but I want it dynamically

You can probably do as such:

config.groovy:

environments {
    development {
        grails.serverURL = "http://localhost:8080"
    }
    production {
        grails.serverURL = "http://www.mywebsite.com"
    }
}

Then in your service sending the email:

    import org.codehaus.groovy.grails.commons.ConfigurationHolder

    def baseURL = ConfigurationHolder.config.grails.serverURL

    mailService.sendMail {
    ...
    g.render(template: "mailtemplate", model:['baseURL':baseURL])
    }

And at last in your link:

 <a href="<g:createLink controller="servicecontroller" action="confirm" base="${baseURL}"/>">linktext</a>

I hope this helps

share|improve this answer
hmmm... now I figured out some new problems. I don't want to use the absolute:true- or the baseURL-argument. Because that must work that a URL can be relative to the current path... Or I'm wrong? I put the createLink function in a normal GSP-file, I got the same "unexpected" URL, only "/servicecontroller/confirm" - nothing else. That's really strange :-( – grailsInvas0r Nov 24 '11 at 18:30

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.