Hi

I installed this, and mimemail, and set the access controls, added to nodes. When I send a node, I recieve no email or on page confirmation. Also - There are two buttons on the page, Submit and Send, I tried both to no avail.

please advise

Comments

allie micka’s picture

Status: Active » Closed (won't fix)

This can't be reproduced in our environment, so I suspect it's a configuration or a server issue.

Please re-open if you can provide more details on:

  • Which options you have clicked
  • Which page you are accessing to send a node (e.g. send/send/node_id )
  • Which button you have clicked
  • Anything else about your environment you might think is informative or helpful

If you are not seeing any error/success messages, you should check your theme to ensure that it is configured to display messages correctly.

If you are not receiving any emails, you should check your server's error logs in case it's failing at that level.

khenney’s picture

Status: Closed (won't fix) » Active

I ran into this same problem. On submitting I would be returned to the "send to friend" page with no confirmation or error message. In my case it looks like a conflict with the jrating module, as I noticed the 5 star rating widget from jrating appeared broken on the page. It was showing a select box and submit button rather than the usual stars (This may be the second "submit" button that the original poster refers to). Turning off jrating solved the problem.

Of course I still wanted to use jrating along with Send. Since I'm including the jrating voting widget via a tpl file, so I just replaced the code that inserted the jrating widget:

<?php 
     print $node->jrating_html;
?>

with a conditional statement that doesn't include the voting widget on the Send pages:

<?php 
     $uri_request_id = $_SERVER['REQUEST_URI'];
     $section = explode("/", $uri_request_id);
     $mainsection = $section[1];

     if ($mainsection != 'send'){
     print $node->jrating_html;
     } 
?>

That's a bit of a kludge of course, but I have only limited familiarity with both of these modules, so I wasn't able to figure out which module is responsible for the problem. Until someone more capable can track down the cause of the problem, that's what got it working for me.

ekrispin’s picture

Priority: Normal » Critical

I have the same problem, also issued at http://drupal.org/node/171227

It's 10 months since this issue opened

allie micka’s picture

Project: Send » Mime Mail

Deliverability issues are Mime Mail related, and dependent on your host's configuration.

allie micka’s picture

Category: bug » support
Priority: Critical » Normal
ekrispin’s picture

In our case, it happens on dreamhost. Anyway, all other mail-related services work fine (e.g. regsitration confirmations, etc.) so it doesn't look as a host configuration issue.

You can try and see this for yourself as an authenticated user in http://www.gurusfeet.com on any node.

allie micka’s picture

Project: Mime Mail » Send
Status: Active » Closed (duplicate)

I'm marking this as a dupe. I think we're on the trail ( nodes with forms, such as fivestar or ecommerce? ). But there are too many dupes to sort it all out.

See also:
http://drupal.org/node/273621
http://drupal.org/node/122743
http://drupal.org/node/197886

I'm also moving it back to Send. Sorry.