--- fieldactions.module 2009-08-12 21:33:10.000000000 +0900 +++ fieldactionsNew.module 2009-08-12 21:43:02.000000000 +0900 @@ -521,10 +521,10 @@ function fieldactions_send_email_to_emai ); if (drupal_mail('fieldactions_general', 'fieldactions_mail_to_email', $field_value['email'], $language, $params, $from, TRUE)) { - watchdog('fieldactions', 'Sent email to %recipient', array('%recipient' => $vars['%node_owner_mail'])); + watchdog('fieldactions', 'Sent email to %recipient', array('%recipient' => $field_value['email'])); } else { - watchdog('error', 'Unable to send email to %recipient', array('%recipient' => $vars['%node_owner_mail'])); + watchdog('error', 'Unable to send email to %recipient', array('%recipient' => $field_value['email'])); } } }