-
-
Notifications
You must be signed in to change notification settings - Fork 281
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Fix produced text address list string according to rfc 2822 (#340)
- Loading branch information
Showing
2 changed files
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,7 +25,7 @@ module.exports['Parse message'] = test => { | |
} | ||
], | ||
html: '<span class="mp_address_group"><span class="mp_address_name">Andris Reinman</span> <<a href="mailto:[email protected]" class="mp_address_email">[email protected]</a>></span>, <span class="mp_address_group"><a href="mailto:[email protected]" class="mp_address_email">[email protected]</a></span>', | ||
text: 'Andris Reinman <[email protected]>, [email protected]' | ||
text: '"Andris Reinman" <[email protected]>, [email protected]' | ||
}); | ||
test.done(); | ||
}); | ||
|