Skip to content

Commit

Permalink
fix: Adds "mailto" to mbox to fix validation (Thanks @AndyHubert). (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
AndyHubert authored and ryasmi committed Jul 27, 2018
1 parent 08c8dff commit 0ccf18c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/transformer/utils/get_user.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ function get_user(array $config, \stdClass $user) {
if (array_key_exists('send_mbox', $config) && $config['send_mbox'] == true) {
return [
'name' => $fullname,
'mbox' => $user->email,
'mbox' => 'mailto:' . $user->email,
];
}

Expand Down

0 comments on commit 0ccf18c

Please sign in to comment.