Skip to content

Commit 5f8c862

Browse files
committed
Added Readme
1 parent 3019e60 commit 5f8c862

File tree

4 files changed

+60
-10
lines changed

4 files changed

+60
-10
lines changed

ImportEmail.sln

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@ Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio 2012
44
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ImportEmail", "ImportEmail\ImportEmail.csproj", "{311F60BD-AB4D-4AD4-91FF-B5E0EBD81472}"
55
EndProject
6+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{4248D9BC-C1E2-4DFC-BEE6-D3EEC3B83764}"
7+
ProjectSection(SolutionItems) = preProject
8+
README.md = README.md
9+
EndProjectSection
10+
EndProject
611
Global
712
GlobalSection(SolutionConfigurationPlatforms) = preSolution
813
Debug|Any CPU = Debug|Any CPU

ImportEmail/ImportEmail.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<OutputType>Exe</OutputType>
99
<AppDesignerFolder>Properties</AppDesignerFolder>
1010
<RootNamespace>ImportEmail</RootNamespace>
11-
<AssemblyName>ImportEmail</AssemblyName>
11+
<AssemblyName>importemail</AssemblyName>
1212
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
1313
<FileAlignment>512</FileAlignment>
1414
<TargetFrameworkProfile />

ImportEmail/Program.cs

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,10 @@
1-
using MpMigrate.MaestroPanel.Api;
2-
using System;
3-
using System.Collections.Generic;
4-
using System.IO;
5-
using System.Linq;
6-
using System.Text;
7-
using System.Threading.Tasks;
8-
9-
namespace ImportEmail
1+
namespace ImportEmail
102
{
3+
using MpMigrate.MaestroPanel.Api;
4+
using System;
5+
using System.IO;
6+
using System.Linq;
7+
118
class Program
129
{
1310
private static ApiClient _client;

README.md

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
#MaestroPanel Import Email
2+
Virgül ile ayrılmış dosyada tutulan eposta adreslerini MaestroPanel'e aktarmanızı sağlar.
3+
4+
## Download
5+
https://github.com/maestropanel/ImportEmail/releases
6+
7+
## Parametreler
8+
9+
**--host**
10+
11+
MaestroPanel'in çalıştığı sunucu IP adresi veya host adı.
12+
13+
**--apikey**
14+
15+
MaestroPanel'de oluşturduğunuz admin veya reseller haklarına sahip API anahtarı. (*MaestroPanel'de nasıl API key oluşturulacağına dair dokümanımızı inceleyiniz https://wiki.maestropanel.com/maestropanelde-api-anahtari-olusturma/*)
16+
17+
**--port**
18+
19+
MaestroPanel'in çalıştığı port numarası. Varsayılan olarak 9715 olarak kabul edilir.
20+
21+
# Kullanım
22+
23+
importemail.exe dosyasının bulunduğu dizinde Emails.txt dosyasını oluşturun.
24+
Emails.txt dosyasının içine MaestroPanel'e eklemek istediğiniz eposta adreslerini aşağıdaki formata göre ekleyin.
25+
26+
[Eposta Sahibinin İsmi], [Eposta Adresinin Tamamı], [Eposta Parolası], [Eposta'nın Kotası]
27+
28+
*Not: Köşeki parantezler daha iyi okunabilsin diye eklenmiştir. Gerçek dosyada köşeli parantez eklemenize gerek yoktur.*
29+
30+
**Örnek Dosya İçeriği:**
31+
32+
Sarı Çizmeli, saric@deneme.com, 12345Osman, 100
33+
Mehmet Ağa, maga@deneme.com, 12345Osman, 150
34+
Patron Super, psuper@deneme.com, 12345Osman, 200
35+
36+
37+
**Örnek Kullanım:**
38+
39+
importemail.exe --host=192.168.5.2 --apikey=1_edae6375c0af496691df31dbc036d615
40+
41+
**Özel bir porta kullanıyorsanız:**
42+
43+
importemail.exe --host=192.168.5.2 --apikey=1_edae6375c0af496691df31dbc036d615 --port=443
44+
45+
46+
## İletişim
47+
48+
ping@maestropanel.com

0 commit comments

Comments
 (0)