ish_manager 0.1.8.400 → 0.1.8.401
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: be589998f18fd38b580126da0bfa392b6ad70bc1f599d3c2fa706c45a34590b7
|
|
4
|
+
data.tar.gz: 1b17229b7e15682dffd49bb9267dc421f7d5e7411537ba9ddbdc9b86430ee0b8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: be2e3ba6f631f0e157d70b3c6d6a4891a4f3e5cde14ca40a72f4636b14449a55859287535792fb600db763e205dd2b3efc222ddb230b9c3febd9af456afa18f0
|
|
7
|
+
data.tar.gz: 281506080e7953135bd07161896c6e01467cc62c03ff8500907e0dfe3d8d5a21cbb7b8679b99564d46b37704d6c972ec7bf1d9c3ba93062b3ef36c2d55da4dd4
|
|
@@ -17,7 +17,10 @@ module IshManager
|
|
|
17
17
|
|
|
18
18
|
def option_alert option
|
|
19
19
|
@option = option
|
|
20
|
-
mail(
|
|
20
|
+
mail({
|
|
21
|
+
:to => option.profile.email,
|
|
22
|
+
:subject => "IshManager Option Alert :: #{option.ticker}",
|
|
23
|
+
})
|
|
21
24
|
end
|
|
22
25
|
|
|
23
26
|
def stock_alert watch_id
|
|
@@ -7,7 +7,6 @@ class IshManager::MeetingMailer < IshManager::ApplicationMailer
|
|
|
7
7
|
def morning_reminder meeting_id:
|
|
8
8
|
@meeting = Ish::Meeting.find meeting_id
|
|
9
9
|
mail( to: @meeting.invitee_email,
|
|
10
|
-
bcc: 'piousbox@gmail.com',
|
|
11
10
|
subject: 'A reminder for your upcoming meeting' )
|
|
12
11
|
end
|
|
13
12
|
|
|
@@ -50,7 +50,6 @@ class IshManager::OfficeMailer < IshManager::ApplicationMailer
|
|
|
50
50
|
|
|
51
51
|
mail( from: @ctx.from_email,
|
|
52
52
|
to: @lead.email,
|
|
53
|
-
bcc: 'piousbox@gmail.com', # @TODO: change _vp_ 2022-11-21
|
|
54
53
|
subject: @ctx.subject,
|
|
55
54
|
template_name: template )
|
|
56
55
|
end
|
|
@@ -65,7 +64,6 @@ class IshManager::OfficeMailer < IshManager::ApplicationMailer
|
|
|
65
64
|
|
|
66
65
|
mail( from: @ctx.from_email,
|
|
67
66
|
to: @ctx.to_email,
|
|
68
|
-
bcc: 'piousbox@gmail.com',
|
|
69
67
|
subject: @ctx.subject,
|
|
70
68
|
template_name: "render/_#{@ctx.tmpl.layout}" )
|
|
71
69
|
end
|