How To Add A User’s Email Address To Their Profile Via PowerShell in SharePoint

Below powershell command is used for updating the users profile emailaddress.

$user = Get-SPUser  domain\username -web http://yourdomain.com
$user.Email

$user.Email = "[email protected]"
$user.Update()