Jump to content
UBot Underground

Bot crashes when i fill in sendfrom field


Recommended Posts

I am using ubotstudio 5.0.13

my bot tends to crash when i fill in the the 'sendfrom'  field to the 'send email' function.

 

connection error 55 failed sending data to peer,

 

this is the code  i used for the 'send from'

loop($list total(%mail_list)) {
        send email($next list item(%mail_list), #subject, "HTML", #html_message, "", "test <test@feedback-serve.com>", "")
        wait($rand(10, 20))
    }

the bot works fine as soon as i remove the 'send from' field.

Link to post
Share on other sites

please check the complete code below. everythng works till i include the 'send from' field

connect to mail server("SMTP", #email, #password, #smtp_server, #smtp_port) {
    add list to list(%mail_list, $list from text(#mails, $new line), "Delete", "Global")
    loop($list total(%mail_list)) {
        send email($next list item(%mail_list), #subject, "HTML", #html_message, "", "postmaster <test@feedbackserve.com>", "")
        wait($rand(10, 20))
    }
}

Link to post
Share on other sites

Send From:

 

In Ubot 5

The email address from which the email is being sent from. Simple insert an email address in the following format: janedoe@doelina.com.

 

In UBot 4,

To set a sender name, place the send from address in the following format: Jane Doelina <janedoe@doelina.com>

 

http://wiki.ubotstudio.com/wiki/Send_Email

Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...