Description: This is a COde to Send Emails with attachement very easily.
You ca use it as an executable, or in you .Net project.
Create you Form, create a Button and Enjoy.
System::Void MyForm::SendOrder_Click(System::Object^ sender, System::EventArgs^ e)
{
List<String^>
Items
String
^Filename
Filename = IO::Path::Combine(System::Environment::GetEnvironmentVariable("TEMP"),
String::Concat("FCSSystem", IO::Path::GetRandomFileName(), ".txt"))
Items.Add(Convert::ToString(DateTime::Now))
for(int ni=0 ni<OrderPanel->Controls->Count ni++)
{
Items.Add(String::Concat(OrderPanel->Controls[ni]->Controls[0]->Name,"Q",
((NumericUpDown^)OrderPanel->Controls[ni]->Controls[1])->Value))
}
IO::File::WriteAllLines(Filename, Items.ToArray())
SendFileTo::MAPI mapi
mapi.AddRecipientTo("sst@fcssystem.com")
mapi.AddAttachment(Filename)
mapi.SendMailPopup("FCS System Order", "Please Write Your Data Here")
}
- [OracleHelper] - Oracle data access with C# interface, in
- [OCR] - Samlpe how to OCR image
- [alpine_cdc] - Alpine 6 disc CD changer control protoco
- [Mailer] - mailer in C# to send emails.
File list (Check if you may need any files):
SendToCS
........\SendToCS
........\........\bin
........\........\...\Debug
........\........\...\Release
........\........\...\.......\SendToCS.exe
........\........\...\.......\SendToCS.pdb
........\........\...\.......\SendToCS.vshost.exe
........\........\Form1.cs
........\........\Form1.Designer.cs
........\........\Form1.resx
........\........\obj
........\........\...\Debug
........\........\...\.....\TempPE
........\........\...\Release
........\........\...\.......\SendToCS.csproj.GenerateResource.Cache
........\........\...\.......\SendToCS.exe
........\........\...\.......\SendToCS.pdb
........\........\...\.......\SendToCS.Properties.Resources.resources
........\........\...\.......\TempPE
........\........\...\.......\Test.Form1.resources
........\........\...\SendToCS.csproj.FileListAbsolute.txt
........\........\Program.cs
........\........\Properties
........\........\..........\AssemblyInfo.cs
........\........\..........\Resources.Designer.cs
........\........\..........\Resources.resx
........\........\..........\Settings.Designer.cs
........\........\..........\Settings.settings
........\........\SendFileTo.cs
........\........\SendToCS.csproj
........\SendToCS.sln