I was trying to find a solutions a whole day :(

Is it possible in drupal 7 to allow anonymous user to post an ad f.e with Classified Ads but it will be published after admin's confirmation. Admin should get an email that somebody sent an ad

Comments

steeph’s picture

I assume the ads are nodes. There are several ways. If one email to one admin and one confirmation is all you need, you could use the Rules module to send an email when a new ad node is created. In the settings for the ad content type you can disable the "Published" check box, so new nodes will be saved unpublished. Then an admin can edit the node and publish it.

There are modules that do this with more options. But it sounds like the notification email is the only thing you need that is not provided by Drupal core.

The most complex solution is Workflow, where you can set up multi-step workflows for multiple users/user roles.