PietNel
Newbie
Good day.
I'm trying to send a email from sim800H but keeps giving smtpsend61 error. All the commands are successful but not the last one.
Here is the part of the code where I send the AT Commands
Any assistance will be appreciated
I'm trying to send a email from sim800H but keeps giving smtpsend61 error. All the commands are successful but not the last one.
Here is the part of the code where I send the AT Commands
Code:
sendATcommand2("AT+EMAILCID=1");
sendATcommand2("AT+EMAILTO=30");
sendATcommand2("AT+SMTPSRV?");
sendATcommand("AT+SMTPSRV=\"mail.smtp2go.com\",2525", 1000);
sendATcommand2("AT+SMTPAUTH=1,\"pietnel007@icloud.com\",xxxxxx");
sendATcommand2("AT+SMTPFROM=\"pietnel007@icloud.com\",DRILL RIG");
sendATcommand2("AT+SMTPRCPT=0,0,\"pietneloo6@gmail.com\",Piet Nel");
sendATcommand2("AT+SMTPSUB=\"THIS IS A TEST EMAIL\"");
sendATcommand2("AT+SMTPBODY=\"20\"");
sprintf(aux_str, "\This s a test email\"");
sendATcommand(aux_str);
sendATcommand2("AT+SMTPSEND");
Any assistance will be appreciated
Last edited by a moderator: