If 'Your name' is Chinese character, whither or not be a user name or type in, such as 汤姆(Tom in Chinese).

show below message:
Unable to send e-mail. Please contact the site administrator if the problem persists.

But, type in Tom, sent nicely.

Comments

yerboo’s picture

Component: User interface » Code
yerboo’s picture

a way to bypass is drop the name value totally

forward.module (v1.16)
delete 639-641
if (!$form_state['values']['name']) {
form_set_error('name', t('You must enter your name.'));
}

delete 514-520
$form['message']['name'] = array(
'#type' => 'textfield',
'#title' => t('Your Name'),
'#size' => 58,
'#maxlength' => 256,
'#required' => TRUE,
);

Now, there isn't the name required. This is a way for no way.

john.oltman’s picture

Version: 6.x-1.17 » 7.x-2.x-dev
Issue summary: View changes
john.oltman’s picture

Status: Active » Closed (won't fix)

This should not be an issue with Drupal 8

john.oltman’s picture

Status: Closed (won't fix) » Closed (outdated)