Skip to content

Commit ed5a1b5

Browse files
author
hellovikram
committed
Committing with Success removing old files
1 parent 101f3f8 commit ed5a1b5

File tree

109 files changed

+1068
-91264
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

109 files changed

+1068
-91264
lines changed

Mono-installation-SDK.md

+122
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,122 @@
1+
# Steps to install C# SDK with Mono-Develop IDE using Git (without Nuget/Package Manager)
2+
3+
If you are using Mono for development and want to integrated with Pepipost directly by using Git, then below steps will help you in integrating this Pepipost C# code library in our IDE.
4+
5+
6+
## Prerequisites
7+
8+
* [dotnet SDK](https://www.microsoft.com/net/download/dotnet-core/2.0) (> 2.0)
9+
* [mono devel](https://www.mono-project.com/download/stable/)
10+
* [Mono-develop IDE](https://www.monodevelop.com/download/)
11+
* [NETStandard.Library](https://www.nuget.org/packages/NETStandard.Library/)(>= 1.6.1)
12+
* [Newtonsoft.Json](https://www.nuget.org/packages/Newtonsoft.Json/)
13+
* A free account on [Pepipost](https://app.pepipost.com/index.php/signup/registeruser).If you don't have a one, click here to sign-up and get 30,000 emails free every month.
14+
15+
## How to Build
16+
17+
1. Download [Pepipost SDK](https://github.com/pepipost/pepipost-sdk-csharp/archive/master.zip)
18+
19+
Unzip the SDK on any Location of your choice (we will unzipped in directory named testSDK)
20+
21+
OR ```git clone https://github.com/pepipost/pepipost-sdk-csharp.git```
22+
23+
![mygit](http://app1.falconide.com/integration_imgs/csharp-mono/1.png)
24+
25+
26+
2. Start Mono-Develop IDE
27+
28+
Click **open**
29+
30+
![monoide](http://app1.falconide.com/integration_imgs/csharp-mono/2.png)
31+
32+
33+
3. Select **Pepipost.sln** from unzipped folder
34+
35+
**Open** the Solution once you have selected the sln file
36+
37+
![mono](http://app1.falconide.com/integration_imgs/csharp-mono/3.png)
38+
39+
40+
4. Once you have opened the solution the few files will appear with respective SDK:
41+
42+
Add new project to the main directory as shown below
43+
44+
![monoaddpro](http://app1.falconide.com/integration_imgs/csharp-mono/4.png)
45+
46+
47+
5. Choose template for new project will be prompted
48+
49+
Select **App -> Console Application -> next**
50+
51+
![appconsole](http://app1.falconide.com/integration_imgs/csharp-mono/5.png)
52+
53+
54+
6. Configure new project
55+
56+
Give a desired name to your project (testConsole recommended)
57+
58+
![makeconsole](http://app1.falconide.com/integration_imgs/csharp-mono/6.png)
59+
60+
61+
7. Resolving dependencies
62+
63+
a. Adding reference
64+
65+
![dep1](http://app1.falconide.com/integration_imgs/csharp-mono/7.png)
66+
67+
Select **Edit Reference**
68+
69+
![dep2](http://app1.falconide.com/integration_imgs/csharp-mono/8.png)
70+
71+
Select **Pepipost -> OK**
72+
73+
![dep3](http://app1.falconide.com/integration_imgs/csharp-mono/9.png)
74+
75+
b. Adding packages
76+
77+
![dep4](http://app1.falconide.com/integration_imgs/csharp-mono/10.png)
78+
79+
search **NewtonSoft.json -> Add packages**
80+
81+
![dep5](http://app1.falconide.com/integration_imgs/csharp-mono/11.png)
82+
83+
84+
8. Once all the packages are installed successfully
85+
86+
Just copy and paste the [simpleUsage.md](https://github.com/hellovikram/pepipost-csharp/blob/master/simpleUsage.md) in your program.cs file present in your project.
87+
88+
Build the project as shown below OR by just hit **F8** to build
89+
90+
![monol8](http://app1.falconide.com/integration_imgs/csharp-mono/l8.png)
91+
92+
93+
9. Update the api_key and FromEmail parameters:
94+
95+
* apikey: This will be available under: Login to your Pepipost account -> Settings -> Integration
96+
* FromEmail: If your fromemail address is e.g. [email protected], then the Sending Domain mydomain need to be verified and active under your Pepipost account. You can manage the Sending Domain under: Login to Pepipost -> Settings -> Sending Domains
97+
98+
99+
10. Change apiKey and FromEmail in your script:
100+
101+
```string apiKey = "XXXXX-your-api-key-XXXX" ``` (near by line no 25 if your have copy the simpleUsage.md)
102+
103+
```body_personalizations_0.Recipient = "your recipient emailid here"``` (near by line no 31)
104+
105+
```body.From.FromEmail = "info@ your-verified-domain"``` (near by line no 37)
106+
107+
108+
11. Build the project to finally send your first test email Run the project.
109+
110+
Run the project by hiting **Ctrl + F5**
111+
112+
If your apikey and sending domain is proper, then response message will be success.
113+
114+
![monol9](http://app1.falconide.com/integration_imgs/csharp-mono/l9.png)
115+
116+
Hope, you have received your first test email 😃
117+
118+
If there is some problem related with config, then you will receive error message as shown below:
119+
120+
![mono10](http://app1.falconide.com/integration_imgs/csharp-mono/l10.png)
121+
122+

Mono-installation-nuget.md

+84
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
# Step to install C# Library using Mono-Develop IDE
2+
3+
If you are using Mono for development, then below steps will help you in integrating this Pepipost C# code library in our IDE.
4+
5+
## Prerequisites
6+
7+
* [dotnet SDK](https://www.microsoft.com/net/download/dotnet-core/2.0) (> 2.0)
8+
* [mono devel](https://www.mono-project.com/download/stable/)
9+
* [Mono-develop IDE](https://www.monodevelop.com/download/)
10+
* [NETStandard.Library](https://www.nuget.org/packages/NETStandard.Library/)(>= 1.6.1)
11+
* [Pepipost](https://www.nuget.org/packages/Pepipost/)
12+
* A free account on [Pepipost](https://app.pepipost.com/index.php/signup/registeruser). If you don't have a one, click here to sign-up and get 30,000 emails free every month.
13+
14+
## How to build
15+
16+
1. Start mono-develop IDE
17+
18+
![Monol1](http://app1.falconide.com/integration_imgs/csharp-mono/l1.png)
19+
20+
21+
2. Select **File -> New Solution** Or Simply **Ctrl+shift+N**
22+
23+
Template for new project prompt will appear **App -> console application -> Next**
24+
25+
![monol2](http://app1.falconide.com/integration_imgs/csharp-mono/l2.png)
26+
27+
28+
3. Give a name to your project
29+
30+
```testConsole```
31+
32+
Once you have named your project simply click create
33+
34+
![monol3](http://app1.falconide.com/integration_imgs/csharp-mono/l3.png)
35+
36+
37+
4. After Project is successfully created
38+
39+
![monol4](http://app1.falconide.com/integration_imgs/csharp-mono/l4.png)
40+
41+
42+
5. Let's add Nuget package dependencies as described earlier
43+
44+
![mono15](http://app1.falconide.com/integration_imgs/csharp-mono/l5.png)
45+
46+
Select **official C# library Pepipost**
47+
48+
![monol7](https://app1.falconide.com/integration_imgs/csharp-mono/l7.png)
49+
50+
51+
6. Once all the packages are installed successfully, just copy and paste the [simpleUsage.md](https://github.com/hellovikram/pepipost-csharp/blob/master/simpleUsage.md) in your program.cs file present in your project.
52+
53+
Build the project as shown below OR by simply hit **F8**
54+
55+
![monol8](http://app1.falconide.com/integration_imgs/csharp-mono/l8.png)
56+
57+
7. Update the api_key and FromEmail parameters:
58+
59+
* apikey: This will be available under: Login to your Pepipost account -> Settings -> Integration
60+
* FromEmail: If your fromemail address is e.g. [email protected], then the Sending Domain mydomain need to be verified and active under your Pepipost account. You can manage the Sending Domain under: Login to Pepipost -> Settings -> Sending Domains
61+
62+
8. Change apiKey and FromEmail in your script:
63+
64+
```string apiKey = "XXXXX-your-api-key-XXXX" ``` (near by line no 25 if your have copy the simpleUsage.md)
65+
66+
```body_personalizations_0.Recipient = "your recipient emailid here"``` (near by line no 31)
67+
68+
```body.From.FromEmail = "info@ your-verified-domain"``` (near by line no 37)
69+
70+
9. Build the project to finally send your first test email Run the project.
71+
72+
Run the project by hiting **Ctrl + F5**
73+
74+
If your apikey and sending domain is proper, then response message will be success.
75+
76+
![monol9](http://app1.falconide.com/integration_imgs/csharp-mono/l9.png)
77+
78+
Hope, you have received your first test email 😃
79+
80+
If there is some problem related with config, then you will receive error message as shown below:
81+
82+
![mono10](http://app1.falconide.com/integration_imgs/csharp-mono/l10.png)
83+
84+

Pepipost.sln

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio 15
4+
VisualStudioVersion = 15.0.26430.14
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Pepipost", "Pepipost\Pepipost.csproj", "{539D99FD-F8E5-4C12-8F62-26EF7585CB94}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Release|Any CPU = Release|Any CPU
12+
EndGlobalSection
13+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14+
{539D99FD-F8E5-4C12-8F62-26EF7585CB94}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{539D99FD-F8E5-4C12-8F62-26EF7585CB94}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{539D99FD-F8E5-4C12-8F62-26EF7585CB94}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{539D99FD-F8E5-4C12-8F62-26EF7585CB94}.Release|Any CPU.Build.0 = Release|Any CPU
18+
EndGlobalSection
19+
GlobalSection(SolutionProperties) = preSolution
20+
HideSolutionNode = FALSE
21+
EndGlobalSection
22+
EndGlobal

PepipostAPI.Standard/Configuration.cs Pepipost/Configuration.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
using PepipostAPI.Standard.Models;
2-
namespace PepipostAPI.Standard
1+
using Pepipost.Models;
2+
namespace Pepipost
33
{
44
public partial class Configuration
55
{

PepipostAPI.Standard/Controllers/BaseController.cs Pepipost/Controllers/BaseController.cs

+10-10
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
/*
2-
* PepipostAPI.Standard
2+
* Pepipost
33
*
4-
* This file was automatically generated by APIMATIC v2.0 ( https://apimatic.io )
4+
* This file was semi-automatically generated by APIMATIC v2.0 ( https://apimatic.io )
55
*/
66
using System;
7-
using PepipostAPI.Standard;
8-
using PepipostAPI.Standard.Utilities;
9-
using PepipostAPI.Standard.Http.Client;
10-
using PepipostAPI.Standard.Http.Response;
11-
using PepipostAPI.Standard.Exceptions;
7+
using Pepipost;
8+
using Pepipost.Utilities;
9+
using Pepipost.Http.Client;
10+
using Pepipost.Http.Response;
11+
using Pepipost.Exceptions;
1212

13-
namespace PepipostAPI.Standard.Controllers
13+
namespace Pepipost.Controllers
1414
{
1515
public partial class BaseController
1616
{
@@ -55,8 +55,8 @@ public static IHttpClient ClientInstance
5555
/// <param name="_context">Context of the request and the recieved response</param>
5656
internal void ValidateResponse(HttpResponse _response, HttpContext _context)
5757
{
58-
if ((_response.StatusCode < 200) || (_response.StatusCode > 208)) //[200,208] = HTTP OK
59-
throw new APIException(@"HTTP Response Not OK", _context);
58+
// if ((_response.StatusCode < 200) || (_response.StatusCode > 208)) //[200,208] = HTTP OK
59+
// throw new APIException(@"HTTP Response Not OK", _context);
6060
}
6161
}
6262
}

PepipostAPI.Standard/Controllers/EmailController.cs Pepipost/Controllers/EmailController.cs

+15-10
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
2-
* PepipostAPI.Standard
2+
* Pepipost
33
*
4-
* This file was automatically generated by APIMATIC v2.0 ( https://apimatic.io )
4+
* This file was semi-automatically generated by APIMATIC v2.0 ( https://apimatic.io )
55
*/
66
using System;
77
using System.Collections.Generic;
@@ -12,14 +12,14 @@
1212
using System.Text;
1313
using System.Threading.Tasks;
1414
using Newtonsoft.Json.Converters;
15-
using PepipostAPI.Standard;
16-
using PepipostAPI.Standard.Utilities;
17-
using PepipostAPI.Standard.Http.Request;
18-
using PepipostAPI.Standard.Http.Response;
19-
using PepipostAPI.Standard.Http.Client;
20-
using PepipostAPI.Standard.Exceptions;
21-
22-
namespace PepipostAPI.Standard.Controllers
15+
using Pepipost;
16+
using Pepipost.Utilities;
17+
using Pepipost.Http.Request;
18+
using Pepipost.Http.Response;
19+
using Pepipost.Http.Client;
20+
using Pepipost.Exceptions;
21+
22+
namespace Pepipost.Controllers
2323
{
2424
public partial class EmailController: BaseController
2525
{
@@ -99,6 +99,11 @@ public Models.SendEmailResponse CreateSendEmail(string apiKey = null, Models.Ema
9999
//invoke request and get response
100100
HttpStringResponse _response = (HttpStringResponse) await ClientInstance.ExecuteAsStringAsync(_request).ConfigureAwait(false);
101101
HttpContext _context = new HttpContext(_request,_response);
102+
103+
//Error handling using HTTP status codes
104+
if (_response.StatusCode == 405)
105+
throw new APIException(@"Method not allowed", _context);
106+
102107
//handle errors defined at the API level
103108
base.ValidateResponse(_response, _context);
104109

PepipostAPI.Standard/Exceptions/APIException.cs Pepipost/Exceptions/APIException.cs

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
/*
2-
* PepipostAPI.Standard
2+
* Pepipost
33
*
4-
* This file was automatically generated by APIMATIC v2.0 ( https://apimatic.io )
4+
* This file was semi-automatically generated by APIMATIC v2.0 ( https://apimatic.io )
55
*/
66
using System;
77
using System.IO;
88
using Newtonsoft.Json;
9-
using PepipostAPI.Standard.Http.Client;
9+
using Pepipost.Http.Client;
1010

11-
namespace PepipostAPI.Standard.Exceptions
11+
namespace Pepipost.Exceptions
1212
{
1313
[JsonObject]
1414
public class APIException : Exception

PepipostAPI.Standard/Http/Client/FileStreamInfo.cs Pepipost/Http/Client/FileStreamInfo.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using System;
22
using System.IO;
33

4-
namespace PepipostAPI.Standard.Http.Client
4+
namespace Pepipost.Http.Client
55
{
66
/// <summary>
77
/// An DTO class to capture information for file uploads

0 commit comments

Comments
 (0)