Is there a port to drupal 6 in the works?
Or should we use another module for this perhaps?
I went ahead and used the coder module on this, here are the results:
-
Line 9: New syntax for .info files files requires core=6.x

Line 8: The arguments to hook_help() have changed (Drupal Docs)function htmlmail_help($section='') {Explanation: Change the first two lines tofunction yourmodule_help($path, $arg) { switch ($path) {
Line 18: hook_mail_alter() parameters have changed (Drupal Docs)function htmlmail_mail_alter($mailkey, &$recipient, &$subject, &$body, &$sender, &$headers) {
Line 46: Menu item titles and descriptions should now no longer be wrapped in t() calls. (Drupal Docs)'title' => t('HTML Mail'),
Line 49: Menu item titles and descriptions should now no longer be wrapped in t() calls. (Drupal Docs)'description' => t('Configure HTML Mail administration options.'),
Line 55: Menu item titles and descriptions should now no longer be wrapped in t() calls. (Drupal Docs)'title' => t('Settings'),
Line 65: Menu item titles and descriptions should now no longer be wrapped in t() calls. (Drupal Docs)'title' => t('Test mail'),
Line 130: The parameters for form validation and submission functions have changed to $form, &$form_state. (Drupal Docs)function htmlmail_admin_test_form_submit($form_id, $form_values) {
Line 132: use $form_state['values'] instead, which is where the values are stored after a submitif ($form_values['test_subject']) {
Line 133: use $form_state['values'] instead, which is where the values are stored after a submitvariable_set('htmlmail_test_subject', $form_values['test_subject']);
Line 135: use $form_state['values'] instead, which is where the values are stored after a submitif ($form_values['test_body']) {
Line 136: use $form_state['values'] instead, which is where the values are stored after a submitvariable_set('htmlmail_test_body', $form_values['test_body']);
Line 139: use $form_state['values'] instead, which is where the values are stored after a submitif (drupal_mail('htmlmail-test', $addr, $form_values['test_subject'], $form_values['test_body'], $addr)) {
Comments
Comment #1
Christopher Herberte commentedYes, there will definably be a d6 port in the weeks to come.
Comment #2
getmecashbaby commentedHow is it doing? It's been 4 weeks :o
Comment #3
Christopher Herberte commentedCommitted initial d6 dev release, you'll see it soon. Please test, review and report.
Comment #4
Christopher Herberte commented