Discussion:
Can mIRC send an email?
(too old to reply)
FastWolf
2004-02-03 01:50:12 UTC
Permalink
I want my mIRC bot to send an email to a fixed address whenever certain
conditions on a channel are present. Is there any way to do this?

--
FW
PT Wang
2004-02-03 05:59:05 UTC
Permalink
Post by FastWolf
I want my mIRC bot to send an email to a fixed address whenever certain
conditions on a channel are present. Is there any way to do this?
--
FW
Simple Mail Transfer Protocol (RFC 821) is a text-based protocol. Therefore,
you can send an email with a properly configured socket SMTP script. If you
are familiar with SMTP and mIRC sockets, you can write one.
FastWolf
2004-02-05 01:36:25 UTC
Permalink
{ from PT Wang on Tue, 03 Feb 2004 05:59:05 GMT }
Post by PT Wang
Post by FastWolf
I want my mIRC bot to send an email to a fixed address whenever certain
conditions on a channel are present. Is there any way to do this?
--
FW
Simple Mail Transfer Protocol (RFC 821) is a text-based protocol. Therefore,
you can send an email with a properly configured socket SMTP script. If you
are familiar with SMTP and mIRC sockets, you can write one.
I'm familiar with sockets, but I've never written a script that used them.
What I want is something like this:

on 1:text:!SOMETEXT:#channel:{
/notice $chan REQUEST ACKNOWLEDGED
[a string that sends the email message]
/notice $chan MESSAGE SENT $time
}

Any idea where I might find some specific educational data online? Thanks in
advance.

--
FW
Sean W Thomson
2004-02-07 08:31:41 UTC
Permalink
http://mircscripts.org/showdoc.php?type=tutorial&id=1128 <~~~Socket tut
http://www.ietf.org/rfc/rfc0821.txt <~~~~smtp rcf
FastWolf
2004-02-12 00:11:04 UTC
Permalink
{ from Sean W Thomson on Sat, 07 Feb 2004 08:31:41 +0000 }
Post by Sean W Thomson
http://mircscripts.org/showdoc.php?type=tutorial&id=1128 <~~~Socket tut
http://www.ietf.org/rfc/rfc0821.txt <~~~~smtp rcf
TY :)
???????w?_??v??_???????
2004-02-07 14:20:50 UTC
Permalink
If you dont feel like reading the smtp rcf then telnet to the smtp server
you are going to use and type help. It should list all the commands you can
use. test them out and code your emailer to that.
Post by FastWolf
{ from PT Wang on Tue, 03 Feb 2004 05:59:05 GMT }
Post by PT Wang
Post by FastWolf
I want my mIRC bot to send an email to a fixed address whenever certain
conditions on a channel are present. Is there any way to do this?
--
FW
Simple Mail Transfer Protocol (RFC 821) is a text-based protocol. Therefore,
you can send an email with a properly configured socket SMTP script. If you
are familiar with SMTP and mIRC sockets, you can write one.
I'm familiar with sockets, but I've never written a script that used them.
on 1:text:!SOMETEXT:#channel:{
/notice $chan REQUEST ACKNOWLEDGED
[a string that sends the email message]
/notice $chan MESSAGE SENT $time
}
Any idea where I might find some specific educational data online? Thanks in
advance.
FastWolf
2004-02-12 00:13:03 UTC
Permalink
{ from ???????w?_??v??_??????? on 7 Feb 2004 06:20:50 -0800 }

I did exactly what you suggested and it worked perfectly. With that data I
can make the mIRC script talk to my SMTP server. Many thanks!

--
FW
Post by ???????w?_??v??_???????
If you dont feel like reading the smtp rcf then telnet to the smtp server
you are going to use and type help. It should list all the commands you can
use. test them out and code your emailer to that.
Post by FastWolf
{ from PT Wang on Tue, 03 Feb 2004 05:59:05 GMT }
Post by PT Wang
Post by FastWolf
I want my mIRC bot to send an email to a fixed address whenever certain
conditions on a channel are present. Is there any way to do this?
--
FW
Simple Mail Transfer Protocol (RFC 821) is a text-based protocol. Therefore,
you can send an email with a properly configured socket SMTP script. If you
are familiar with SMTP and mIRC sockets, you can write one.
I'm familiar with sockets, but I've never written a script that used them.
on 1:text:!SOMETEXT:#channel:{
/notice $chan REQUEST ACKNOWLEDGED
[a string that sends the email message]
/notice $chan MESSAGE SENT $time
}
Any idea where I might find some specific educational data online? Thanks in
advance.
Loading...