Questions tagged [easendmail]

EASendMail is a component for sending emails.

EASendMail SMTP component allows developers to deliver required reliability and functionality email applications in VB6, ASP, C++, C#, VB.NET, JScript.NET, ASP.NET or other .NET framework/COM programming languages more easily. Many advanced features are supported including S/MIME, DNS MX record lookup to send email without specified SMTP server.

12 questions
2
votes
1 answer

Sending HTML email containing images in mail body VB.NET

I am working on a Mail App in VB.NET. The mail app sends mail in two steps : 1.It converts the Email body(rtf) to HTML 2.Then it sends the converted HTML as the email body For these, i am using EASendMail(to send email),Itenso RTF2HTML converter(to…
Software Dev
  • 5,368
  • 5
  • 22
  • 45
2
votes
5 answers

Using string variables instead of string literals causes error

I am following this guide to send email in c++ . You can download the header files : easendmailobj.tlh and easendmail object at here #include "stdafx.h" #include #include "easendmailobj.tlh" using namespace EASendMailObjLib; using…
Computernerd
  • 7,378
  • 18
  • 66
  • 95
2
votes
1 answer

How to send mail by EAsendmail in asp.net?

I’m sending mail in asp like this: MailMessage msg = new MailMessage(); msg.From = new MailAddress("from@email", "From Name"); msg.Subject = "Subject"; msg.To.Add("to@email"); msg.BodyEncoding = Encoding.UTF8; String…
NASRIN
  • 475
  • 7
  • 22
1
vote
1 answer

how to delete attachment file after send mail when using EA Sendmail in C++?

I'm using Visual Studio 2015 to create a simple send mail program using EA Sendmail library. I try to send "D:\tmp\pic.jpg", after send success I would delete it by command remove("D:\\tmp\\pic.jpg") from #include. But this file still…
1
vote
3 answers

Unhandled exception : _com_error at memory location 0x0040f4ac

I am using an external library EASendMail to send email using gmail as an SMTP server . The line causing the error oSmtp->LicenseCode = _T("TryIt"); The link to install the external library . #include "stdafx.h" #include #include…
Computernerd
  • 7,378
  • 18
  • 66
  • 95
1
vote
1 answer

Why doesn’t add a div bottom of another div in sending email?

I'd want add a div to the bottom of another div. I have tested this code and it works fine.
0
votes
0 answers

C# - SMTP Mail Send on Linux doesn't work

My Program runs on an debian 10 Linux Server. I used a package in my C# programm called EASendMail but it doesn't work with the normal System.Net.Mail aswell. This is my code snippet I use for sending a mail SmtpMail oMail = new SmtpMail("mykey"); …
Timebreaker900
  • 312
  • 2
  • 7
  • 21
0
votes
0 answers

"Debug Error! abort() has been called" EASendEmail

I am using EASendEmail with Visual C++. After I compile the code and run it, I get an error which reads: "Debug Error! /Program:[file path] /abort() has been called/ (press retry to debug the application)" The code is from this…
0
votes
1 answer

Html mail does not work

Scenario I would like to send iframe with google map. I have been trying to do it, but I found that my mail is not send as HTML at all. HtmlBody

<iframe…

zolty13
  • 1,943
  • 3
  • 17
  • 34
0
votes
1 answer

Use TextBox Value in C# send email

I am using the EASendMail SMTP component which I had to install and reference in my windows 8 desktop app. I am using this to send an email with some html content. private async void btnSend_Click(object sender, RoutedEventArgs e) { …
Tester
  • 2,887
  • 10
  • 30
  • 60
0
votes
0 answers

why this Error : A socket operation was attempted to an unreachable network [2a00:1450:4008:c01::6c]:25

I am trying to send email from C# desktop application ,I referred this page for doing this http://www.emailarchitect.net/easendmail/kb/csharp.aspx?cat=0 here is my code but it is giving me following exception A socket operation was attempted to an…
Durga
  • 1,283
  • 9
  • 28
  • 54
-2
votes
1 answer

How can I send emails with waiting time in C#?

I want to send emails with waiting like this: You get the all receiver list from a .txt file and you set a time (for example: 50 seconds and 20 people) It needs to send email to 20 people and wait for 50 seconds then continue to send mails from that…
Portostor
  • 23
  • 4