Skip to content

Commit 15a74b4

Browse files
committed
Change email domain
1 parent ccee2a0 commit 15a74b4

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

  • content/en/docs/refguide/installation/upgrading-from-10-to-11

content/en/docs/refguide/installation/upgrading-from-10-to-11/_index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -148,15 +148,15 @@ In Mendix 11.0 you won’t run into any ambiguity around this anymore.
148148
#### Example 3
149149

150150
```
151-
$User/Name + "@mendix.com"
151+
$User/Name + "@siemens.com"
152152
```
153153

154-
In this example, Mendix will handle string concatenation correctly no matter if `$User/Name` is `empty` or `''`. The resulting string will be `@mendix.com`.
154+
In this example, Mendix will handle string concatenation correctly no matter if `$User/Name` is `empty` or `''`. The resulting string will be `@siemens.com`.
155155

156156
In this particular example, if you want to prevent the generation of email addresses without the first part you should add a validation check before doing concatenation:
157157

158158
```
159-
if trim($User/Name) = '' then '' else $User/Name + "@mendix.com"
159+
if trim($User/Name) = '' then '' else $User/Name + "@siemens.com"
160160
```
161161

162162
### React 19 {#react-19}

0 commit comments

Comments
 (0)