Last change
on this file since 0f5aa27 was 0f5aa27, checked in by darsov2 <62809499+darsov2@…>, 12 months ago |
ouath, mailing impl
|
-
Property mode
set to
100644
|
File size:
823 bytes
|
Line | |
---|
1 | package com.tourMate.events;
|
---|
2 |
|
---|
3 | import com.tourMate.entities.User;
|
---|
4 | import jdk.jfr.Event;
|
---|
5 | import org.springframework.context.ApplicationEvent;
|
---|
6 |
|
---|
7 | public class OnProfileEnabledEvent extends EmailEvent {
|
---|
8 | private static final long serialVersionUID = 1L;
|
---|
9 | private User user;
|
---|
10 |
|
---|
11 | public OnProfileEnabledEvent(User user) {
|
---|
12 | super(user);
|
---|
13 | this.eventType = EventType.PROFILE_ENABLED;
|
---|
14 | this.subject = "TourMate - Активиран профил";
|
---|
15 | this.message = "Драг кориснику,\n\nВе известуваме дека Вашата регистрација е ревидирана од страна на администраторот и Вашиот профил е одобрен. Можете да започнете со користење.\n\n\nСо почит,\nTourMate";
|
---|
16 | }
|
---|
17 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.