I mean the password stuff is on another line… should I have it on this one too?
In total, the e-mail message block of code looks kind of like:
$message .= sprintf(__(‘Username: %s’), $username) . “\r\n”;
$message .= sprintf(__(‘Password: %s’), $password) . “\r\n”;
$message .= sprintf(__(‘Website:’), . “a bunch of stuff i don’t recognize\r\n”;
The end result e-mail looks like:
Username: Jefferson
Password: 2kss9a
https://www.mywholewebsite.com/nastyurl/stuffidontwantthemtosee/wp-login.php
I’d like it to look like:
Username: Jefferson
Password: 2kss9a
You can login at: “www.mywebsite.com”
So I just need to change that last line of code out of those 3, but I’m wondering what I need to change it to, exactly.
Any help is great, Han!