Index: rules/modules/system.rules_forms.inc =================================================================== --- rules/modules/system.rules_forms.inc (revision 206) +++ rules/modules/system.rules_forms.inc (working copy) @@ -79,12 +79,13 @@ function rules_action_mail_to_user_form($settings */ function rules_action_mail_form($settings = array(), &$form) { $form['settings']['to'] = array( - '#type' => 'textfield', + '#type' => 'textarea', '#title' => t('Recipient'), '#default_value' => isset($settings['to']) ? $settings['to'] : '', '#description' => t("The mail's recipient address. You may separate multiple addresses with ','."), '#required' => TRUE, '#weight' => -1, + '#rows' => 1, ); rules_action_mail_to_user_form($settings, $form); }