You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: source/_posts/2012-08-09-integrate-sendgrid-with-redmine.markdown
+4-4
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ comments: true
7
7
slug: integrate-redmine-with-sendgrid
8
8
tags: [redmine, sendgrid]
9
9
categories: [redmine,sendgrid]
10
-
published: false
10
+
published: true
11
11
---
12
12
13
13
One thing everybody wants when deploying applications is integrating them with other applications or services. Two popular apps and services out there for small businesses that manage project management and email are Redmine and SendGrid.
@@ -24,11 +24,11 @@ Before I get started I'll admit that I had a working redmine install and this wo
24
24
# gem install json
25
25
# gem install sendgrid
26
26
```
27
-
The bulk of this funcionality is provided by the sendgrid gem which originates from here: https://github.com/stephenb/sendgrid. Git a lot of credit its creator.
27
+
The bulk of this funcionality is provided by the sendgrid gem which originates from here: [https://github.com/stephenb/sendgrid](https://github.com/stephenb/sendgrid). Give a lot of credit to its creator.
28
28
29
29
#### Redmine Configuration File
30
30
31
-
If your Redmine install was something like /var/www/redmine, your configuration file will be /var/www/redmine/config/configuration.yml. If you have a relatively clean Redmine install, chances are you might not have one or it's a default template with a lot of examples. You might find an example detailing how to integrate with GMail in the example file. Our set up will be similar. Paste the following into your configuration.yml file and change the necessary parameters.
31
+
If your Redmine install is something like /var/www/redmine, your configuration file will be /var/www/redmine/config/configuration.yml. If you have a relatively clean Redmine install, chances are you might not have one or it's a default template with a lot of examples. You might find an example detailing how to integrate with GMail in the example file. Our set up will be similar. Paste the following into your configuration.yml file and change the necessary parameters.
32
32
33
33
```
34
34
production:
@@ -62,7 +62,7 @@ Through your web browser, go to Administration -> Settings, and click the "Email
62
62
63
63
### Troubleshooting
64
64
65
-
If you are getting auth errors, make sure you are just using your user_name parameter in the configuration.yml file.
65
+
If you are getting auth errors, make sure you are just using your user_name parameter in the configuration.yml file (i.e. just "redmine").
66
66
67
67
If you think you can't reach the service, try this quick connection test:
0 commit comments