diff --git a/wiki/Users-Gmail-Send-As-Signature-Vacation.md b/wiki/Users-Gmail-Send-As-Signature-Vacation.md index 490e5e01..33d64309 100644 --- a/wiki/Users-Gmail-Send-As-Signature-Vacation.md +++ b/wiki/Users-Gmail-Send-As-Signature-Vacation.md @@ -310,4 +310,19 @@ mjones@domain.com,Mary,Jones,510-555-1212 x 456 This command will update the user's signatures. ``` gam csv Users.csv gam user "~email" signature htmlfile SigTemplate.html replace FirstName "~first" replace LastName "~last" replace Phone "~phone" replace Email "~email" -``` \ No newline at end of file +``` + +You can also do the update with user attributes: + +This is a sample Users.csv file. + +``` +email +bsmith@domain.com +mjones@domain.com +``` + +This command will update the user's signatures. +``` +gam csv Users.csv gam user "~email" signature htmlfile SigTemplate.html replace FirstName field:name.givenname replace LastName field:name.familyname replace Phone field:phone.value.type.work replace Email field:email.primaryemail +```