I have an SMTP Server without SSL / TLS but if I want to send an mail I always get this error.
Im using an MEGA with ENC28J60 Shield.
I used 0 / 0 as login because the Server doesnt need them.
Here is my Code:
// Includes
#include <Arduino.h>
#include <EMailSender.h>
#include <IPAddress.h>
// Set Mail Params
EMailSender emailSend("0","0","test@test.com","SmartTest","IP of SMTP",25); // to be defined
//
byte mac[] = { 0xAA, 0xCD, 0xBE, 0xEF, 0xDD };
// the setup function runs once when you press reset or power the board
void setup()
{
// INIT
Serial.begin(115200);
Ethernet.init(53);
Ethernet.begin(mac);
Serial.println("IP: ");
Serial.println(Ethernet.localIP());
EMailSender::EMailMessage message;
message.subject = "Test";
message.message = "Bestanden!";
EMailSender::Response resp = emailSend.send("smarttest@gmail.com", message);
Serial.println(resp.status);
Serial.println(resp.code);
Serial.println(resp.desc);
}
// the loop function runs over and over again until power down or reset
void loop() {
}
To fix this you need to add the full domain name or a workgroup name to the network identification.
Open the System Properties and go to the Computer Name tab (Network Identification on Win2000 server). You will see “MACHINE-name.” in the full computer name field. You will need to append your full domain name or workgroup name here. Click the “Change” button (Properties for Win2k) on the Computer Name tab, then click “More”. Enter the full domain name or workgroup name in the “Primary DNS suffix of this computer” and click OK. After you OK the change, you will be required to reboot.
When you come back up, the Network ID page should show the Full machine.domain.com name.
Other causes may be, a failure to assign a valid email address to the mandatory From property:
Mail.From = “name@domain.com”
This error may also occur if a name instead of an email address is specified for this property. Another reason is, invalid syntax in an email address passed to any of the methods: AddAddress, AddCC, AddBcc or AddReplyTo.
I think the second part can help you.
I don’t need if necessary for your provider (but I think no) you can set the value to HELO message with emailSend.setPublicIpDescriptor(<Value of HELO>)
If you don’t need authentication you must set It with this command
Hi Renzo, I tried your solution but Im still running in the same error.
What did you mean by that qoute, because my EMailFrom is set to the correct Form:
“mail@domain.com”
I also found out that the Mail Server would not connect me all the time, like half of the time the connection timed out. Could that be a reason I should look at?
Maintaining a repository (or site or forum) is a lot like tending to a garden - it requires constant care and attention to keep it thriving. If you're a skilled gardener (or coder!) and want to help keep our repository blooming, we'd love to have you on board! We're also looking for talented writers and forum moderators to help us grow our community. Interested in joining our team? Don't hesitate to reach out and let us know how you can contribute!
Are you a fan of electronics or programming? Share your knowledge with others, write a simple tutorial or how to make a great project Contact me: share_your_ideas@mischianti.org
The content displayed on this website is protected under a CC BY-NC-ND license. Visitors are prohibited from using, redistributing, or altering any content from this website for commercial purposes, including generating revenue through advertising. Any unauthorized use is a violation of the license terms and legal action may be taken against individuals or entities found to be in violation.
You must also provide the link to the source.
To provide the best experiences, we use technologies like cookies to store and/or access device information. Consenting to these technologies will allow us to process data such as browsing behavior or unique IDs on this site. Not consenting or withdrawing consent, may adversely affect certain features and functions.
Functional
Always active
The technical storage or access is strictly necessary for the legitimate purpose of enabling the use of a specific service explicitly requested by the subscriber or user, or for the sole purpose of carrying out the transmission of a communication over an electronic communications network.
Preferences
The technical storage or access is necessary for the legitimate purpose of storing preferences that are not requested by the subscriber or user.
Statistics
The technical storage or access that is used exclusively for statistical purposes.The technical storage or access that is used exclusively for anonymous statistical purposes. Without a subpoena, voluntary compliance on the part of your Internet Service Provider, or additional records from a third party, information stored or retrieved for this purpose alone cannot usually be used to identify you.
Marketing
The technical storage or access is required to create user profiles to send advertising, or to track the user on a website or across several websites for similar marketing purposes.
To provide the best experiences, we use technologies like cookies to store and/or access device information. Consenting to these technologies will allow us to process data such as browsing behavior or unique IDs on this site. Not consenting or withdrawing consent, may adversely affect certain features and functions.
Functional
Always active
The technical storage or access is strictly necessary for the legitimate purpose of enabling the use of a specific service explicitly requested by the subscriber or user, or for the sole purpose of carrying out the transmission of a communication over an electronic communications network.
Preferences
The technical storage or access is necessary for the legitimate purpose of storing preferences that are not requested by the subscriber or user.
Statistics
The technical storage or access that is used exclusively for statistical purposes.The technical storage or access that is used exclusively for anonymous statistical purposes. Without a subpoena, voluntary compliance on the part of your Internet Service Provider, or additional records from a third party, information stored or retrieved for this purpose alone cannot usually be used to identify you.
Marketing
The technical storage or access is required to create user profiles to send advertising, or to track the user on a website or across several websites for similar marketing purposes.