|
| 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 | +  |
| 24 | + |
| 25 | + |
| 26 | + 2. Start Mono-Develop IDE |
| 27 | + |
| 28 | + Click **open** |
| 29 | + |
| 30 | +  |
| 31 | + |
| 32 | + |
| 33 | + 3. Select **Pepipost.sln** from unzipped folder |
| 34 | + |
| 35 | + **Open** the Solution once you have selected the sln file |
| 36 | + |
| 37 | +  |
| 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 | +  |
| 45 | + |
| 46 | + |
| 47 | + 5. Choose template for new project will be prompted |
| 48 | + |
| 49 | + Select **App -> Console Application -> next** |
| 50 | + |
| 51 | +  |
| 52 | + |
| 53 | + |
| 54 | + 6. Configure new project |
| 55 | + |
| 56 | + Give a desired name to your project (testConsole recommended) |
| 57 | + |
| 58 | +  |
| 59 | + |
| 60 | + |
| 61 | + 7. Resolving dependencies |
| 62 | + |
| 63 | + a. Adding reference |
| 64 | + |
| 65 | +  |
| 66 | + |
| 67 | + Select **Edit Reference** |
| 68 | + |
| 69 | +  |
| 70 | + |
| 71 | + Select **Pepipost -> OK** |
| 72 | + |
| 73 | +  |
| 74 | + |
| 75 | + b. Adding packages |
| 76 | + |
| 77 | +  |
| 78 | + |
| 79 | + search **NewtonSoft.json -> Add packages** |
| 80 | + |
| 81 | +  |
| 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 | +  |
| 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 | +  |
| 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 | +  |
| 121 | + |
| 122 | + |
0 commit comments