After connecting using connect_outlook(), the get_*() functions retrieve properties from this connection.

get_name(account = connect_outlook())

get_department(account = connect_outlook())

get_address(account = connect_outlook())

get_phone_numbers(account = connect_outlook())

get_mail_address(account = connect_outlook())

get_inbox_name(account = connect_outlook())

get_drafts_name(account = connect_outlook())

get_certe_name(user = Sys.info()["user"], account = connect_outlook())

get_job_title(user = Sys.info()["user"], account = connect_outlook())

get_certe_name_and_job_title(
  user = Sys.info()["user"],
  account = connect_outlook()
)

get_certe_location(account = connect_outlook())

get_certe_signature(account = connect_outlook(), plain = FALSE)

Arguments

account

the Microsoft 365 Outlook account object, e.g. as returned by connect_outlook()

user

Certe user ID, to look up the secret user.{user}.fullname

plain

a logical to indicate whether textual formatting should not be applied

Details

The get_certe_name() and get_certe_name_and_job_title() functions first look for the secret user.{user}.fullname and falls back to get_name() if it is not available.