By gunzip on
hello,
i'm running drupal 6. i want that anonymous users have to confirm the nodes posted
following a generated 'secret' link returned to them via email.
i've read this can be done with cclink (shipped with the deprecated workflow-ng module),
what about the new rules module ?
anyway, what's the simplest way to do that ?
thanks in advance,
-d.
Comments
did u figure out how to do this?
let me know
i gave up. there is a
i gave up.
there is a complex solution anyway: you can do this programatically
in a custom module binding a callback to a menu item
(like http://example.com/confirm/nid/C0D3), and publish the node
once the link is visited.
to send the email you can use hook_nodeapi intercepting
the insert operation then create the code to use and send it.
Where can this work around be found
Could you post a link to the information about the work around, thanks.
i did something like this (i
i did something like this (i lost the sources):
1. create a content type 'anonymous_post' with an email field 'anonymous_email'
2. send an email on node creation to this address (if filled)
3. create an action (with rules module) that publishes the node once that secret link is visited
(or just do this programmatically with a menu callback page)
I need it too I'm looking for
I need it too
I'm looking for a a way to set drupal so that anonymous users must confirm contents put in my website via their email.
I need mostly for comments (I do not let anonymous create nodes, but only comment).
some one knows a way or a module, a workaround..?
SUbscribing, needing the
SUbscribing, needing the same, preferrably witrh rules!
greetings, Martijn
any progress? i need it too
any progress?
i need it too
Code be done using rules
This can be done using rules, as explained here.