Configure Costum Actions
Configure Costum Actions
Hello,
I have a view (http://sites.google.com/site/bookwormorg/livros) which I would like to add "show action for each record". The action would be sending an email with the content of two fields "Nome" and "Autor".
The problem is that I cant seem to get either, it keeps saying that Variable 'nome' is not declared.
Any help would be appreciated.
The code I have:
void pedir_este_livro()
{
sendmail
[
from:zoho.adminuserid
to:zoho.adminuserid,"yourname@domain.com"
subject:"BookWorm - Pedir este livro"
message:"Nome: " + nome + "
Autor: " + autor
content type:HTML
]
}