MCPcopy
hub / github.com/pocketbase/pocketbase / Email

Method Email

core/record_model_auth.go:6–8  ·  view source on GitHub ↗

Email returns the "email" record field value (usually available with Auth collections).

()

Source from the content-addressed store, hash-verified

4
5// Email returns the "email" record field value (usually available with Auth collections).
6func (m *Record) Email() string {
7 return m.GetString(FieldNameEmail)
8}
9
10// SetEmail sets the "email" record field value (usually available with Auth collections).
11func (m *Record) SetEmail(email string) {

Callers 15

TestRecordEmailFunction · 0.95
NewVerificationTokenMethod · 0.95
NewPasswordResetTokenMethod · 0.95
NewEmailChangeTokenMethod · 0.95
superuserCreateCommandFunction · 0.95
SendRecordAuthAlertFunction · 0.80
SendRecordOTPFunction · 0.80
SendRecordPasswordResetFunction · 0.80
SendRecordVerificationFunction · 0.80
sendSystemAlertFunction · 0.80
onRecordSaveExecuteFunction · 0.80

Calls 1

GetStringMethod · 0.95