Sorry your browser is not supported!

You are using an outdated browser that does not support modern web technologies, in order to use this site please update to a new browser.

Browsers supported include Chrome, FireFox, Safari, Opera, Internet Explorer 10+ or Microsoft Edge.

Program Announcements / Goga's SMTP Plugin (eMail Sending Plugin)

Author
Message
Sergey K
20
Years of Service
User Offline
Joined: 4th Jan 2004
Location:
Posted: 14th Apr 2006 11:14 Edited at: 14th Apr 2006 11:26
Hey all, i released SMTP plugin that able to send emails to pop3 server via DarkBasic Pro.

Version: 0.8
Download in RAR:
http://www.gogetax.com/downloads/plugins/GogasSMTPPlugin0.8.rar

Download in ZIP:
http://www.gogetax.com/downloads/plugins/GogasSMTPPlugin0.8.zip

for more information, go to my site http://www.gogetax.com > Goga's Projects > SMTP Plugin

[edit]
DavidR, give me a break, and dont post. because your posts are most usless for my threads.

MyNewSite:http://gogetax.com
Forums(About BLO and more):http://gogetax.com/forum
Mr Crazy
19
Years of Service
User Offline
Joined: 29th Nov 2004
Location:
Posted: 14th Apr 2006 12:37
Excellent plugin GogetaX. This is a brilliant contrabution to the community. Well done!

Life, the Universe and Everything
Chris Franklin
18
Years of Service
User Offline
Joined: 2nd Aug 2005
Location: UK
Posted: 14th Apr 2006 12:48 Edited at: 14th Apr 2006 12:48
Didn't bouncy brick/mrtatoad release an open source one a while back
o and
Quote: "DavidR, give me a break, and dont post. because your posts are most usless for my threads."


People can post where they want

Theme park simulator wip

dark coder
21
Years of Service
User Offline
Joined: 6th Oct 2002
Location: Japan
Posted: 14th Apr 2006 21:12
@sunrise what was the point in your post? so what if theres already one made maybe he wants to get more practice making plugins, or wants to make lots of usefull plugins. (though i dont have much use for most of them)

Halowed are the ori.
Chris Franklin
18
Years of Service
User Offline
Joined: 2nd Aug 2005
Location: UK
Posted: 14th Apr 2006 22:50
sorry dc i was just annoyed at the time that an open source plugin could have been re complied and the commands changed

Theme park simulator wip

Sergey K
20
Years of Service
User Offline
Joined: 4th Jan 2004
Location:
Posted: 14th Apr 2006 23:02
huh?! you think i stole some source code?!
wtf!!

i even didnt heard about something like this.. and this plugin was made by my own without "recompiling" and stuff.. as you see, i only practicing by making plugins better and better..
and for your knowlage, i already learning DirectX SDK in delphi and so far, got 3d Engine running (dx 9.0c april 2006) and much more than that i already finished.

MyNewSite:http://gogetax.com
Forums(About BLO and more):http://gogetax.com/forum
Mr Crazy
19
Years of Service
User Offline
Joined: 29th Nov 2004
Location:
Posted: 14th Apr 2006 23:10
I've known GogetaX for ages. His programming knowledge is excellent, and he has made several good functions in DLLs. He would never steal source code. Never. So don't even think of accusing him, Sunrise3D.

Life, the Universe and Everything
empty
21
Years of Service
User Offline
Joined: 26th Aug 2002
Location: 3 boats down from the candy
Posted: 14th Apr 2006 23:12
While I doubt that this was recompiled (this is Delphi, Bouncy Brick prefers C(++)), I'm not quite sure why an SMTP plugin with about 20 commands needs to be 500k in size...

Sergey K
20
Years of Service
User Offline
Joined: 4th Jan 2004
Location:
Posted: 14th Apr 2006 23:20
well, im not sure empty.. it seems like delphi makes dlls bigger than they should be..
my Free DBP Plugin 2.0, were almost 1MB of size!
there was like over 30 different dialogs (and of corse lots of headers though) and over 40 different commands..
my smtp plugin, got around 4/5 headers..
classes,windows,dialogs and some of my stuff..

MyNewSite:http://gogetax.com
Forums(About BLO and more):http://gogetax.com/forum
Chris Franklin
18
Years of Service
User Offline
Joined: 2nd Aug 2005
Location: UK
Posted: 14th Apr 2006 23:23
fine i was wrong does it really matter?

Theme park simulator wip

David R
20
Years of Service
User Offline
Joined: 9th Sep 2003
Location: 3.14
Posted: 14th Apr 2006 23:24
Just out of interest, what method does this plugin use to send mail? Does it depend on another component to do SMTP, or is an entirely independent SMTP engine?

Quote: "Let's think the unthinkable, let's do the undoable, let's prepare to grapple with the ineffable itself, and see if we may not eff it after all."
empty
21
Years of Service
User Offline
Joined: 26th Aug 2002
Location: 3 boats down from the candy
Posted: 14th Apr 2006 23:27
you need to strip out unnecessary libraries from the uses clause.
For example, there's no need to include SysUtils if you only need 2 or 3 functions from it. Just write your own. Some units (windows, messages) just contain constants and interface functions for external (DLL) functions, so they don't add a lot (if anything). The unit Forms is a big one, avoid it if you can. And finally, older Delphi versions produce smaller exes/dlls. That's why I'm still using Delphi v4 occasionally.

Jeku
Moderator
20
Years of Service
User Offline
Joined: 4th Jul 2003
Location: Vancouver, British Columbia, Canada
Posted: 14th Apr 2006 23:49
@Sunrise--- If you're looking for a ban, keep it up.

This could be a cool plug-in and useful for different types of projects. Thanks GogetaX

Sergey K
20
Years of Service
User Offline
Joined: 4th Jan 2004
Location:
Posted: 15th Apr 2006 01:05
Quote: "Just out of interest, what method does this plugin use to send mail?"

errr.. its not self sending.. it needs to be connected to the server.

but i CAN make actually self SMTP sender if i will have a time for that..

MyNewSite:http://gogetax.com
Forums(About BLO and more):http://gogetax.com/forum
Chris Franklin
18
Years of Service
User Offline
Joined: 2nd Aug 2005
Location: UK
Posted: 15th Apr 2006 01:18 Edited at: 15th Apr 2006 13:53
Quote: "but i CAN make actually self SMTP sender if i will have a time for that.. "

Cool sounds good

Saves the hassle of connecting to a server and all that if that's what you mean

@Jeku
Sorry bout that didn't realise i'd done anything wrong

Theme park simulator wip

David R
20
Years of Service
User Offline
Joined: 9th Sep 2003
Location: 3.14
Posted: 15th Apr 2006 17:44
@Goga: What I mean, is what is it using to send? Is it a manual connection and sending procedure, or does it depend on another component to do its job?

Quote: "Let's think the unthinkable, let's do the undoable, let's prepare to grapple with the ineffable itself, and see if we may not eff it after all."
Sergey K
20
Years of Service
User Offline
Joined: 4th Jan 2004
Location:
Posted: 16th Apr 2006 11:30
well, when i start learned about those stuff, i taked the source code from some components to learn how to work with SMTP client..
and my old SMTP sender (0.4) worked using that component.. but this version (0.8) got his own procedure to send...

MyNewSite:http://gogetax.com
Forums(About BLO and more):http://gogetax.com/forum
David R
20
Years of Service
User Offline
Joined: 9th Sep 2003
Location: 3.14
Posted: 16th Apr 2006 16:54
Quote: "got his own procedure to send...
"


And that is what? A manual SMTP connection, or does it use another library of some kind to connect- all I want to know is its dependencies

Quote: "Let's think the unthinkable, let's do the undoable, let's prepare to grapple with the ineffable itself, and see if we may not eff it after all."
Sergey K
20
Years of Service
User Offline
Joined: 4th Jan 2004
Location:
Posted: 16th Apr 2006 17:52
a manual SMTP connection.

MyNewSite:http://gogetax.com
Forums(About BLO and more):http://gogetax.com/forum
Chris Franklin
18
Years of Service
User Offline
Joined: 2nd Aug 2005
Location: UK
Posted: 16th Apr 2006 23:50
Just an idea why not put all your dll's into one

Theme park simulator wip

Sergey K
20
Years of Service
User Offline
Joined: 4th Jan 2004
Location:
Posted: 17th Apr 2006 10:22 Edited at: 17th Apr 2006 10:23
wich will make the dll extreamly big. wich will make the compile speed extreamly slow(in delphi) and wich will make the .exe after the dll has compiled into it, extreamly big..

MyNewSite:http://gogetax.com
Forums(About BLO and more):http://gogetax.com/forum
Pricey
21
Years of Service
User Offline
Joined: 22nd Feb 2003
Location:
Posted: 4th May 2006 22:41
this will be BEAUTIFUL for me!!! thanks goga

:: 3Ghz Pentium 4 / Hyper Threading, 1024mb RAM, 250GB HDD, 256mb Radeon 9600XT Graphics ::


Chris Franklin
18
Years of Service
User Offline
Joined: 2nd Aug 2005
Location: UK
Posted: 8th May 2006 23:43
i thought this died

Theme park simulator wip boards

Sergey K
20
Years of Service
User Offline
Joined: 4th Jan 2004
Location:
Posted: 9th May 2006 11:11
why should it die? =/

(i even got that plugin inside the "Useful TGC Plugins" list thread

MyNewSite:http://gogetax.com
Forums(About BLO and more):http://gogetax.com/forum
Chris Franklin
18
Years of Service
User Offline
Joined: 2nd Aug 2005
Location: UK
Posted: 13th May 2006 12:14
i was talking about the 1 month bump

Theme park simulator wip boards

Rudolpho
18
Years of Service
User Offline
Joined: 28th Dec 2005
Location: Sweden
Posted: 25th Aug 2006 18:55
Say Sergey, you couldn't possibly remove the 'password-and-username-must-be-longer-than-zero' limit?
That would really be appreciated

(It seems like a really useful plugin except for that irritating thing, which makes it impossible for me to use)

Det är väl så
Uncle Sam
18
Years of Service
User Offline
Joined: 23rd Jul 2005
Location: West Coast, USA
Posted: 31st Aug 2006 03:07
Brilliant Sergey. This is just what I need for activating acounts in an online game.

Uncle Sam
Nvidia Geforce 7600 GS 256MB PCIEx, 2.66 GHZ Pentium 4 proccessor, 768MB RAM
Need particles? Click here!
Sergey K
20
Years of Service
User Offline
Joined: 4th Jan 2004
Location:
Posted: 1st Sep 2006 14:13
sorry Rudolpho, im at army now, dont have time to work on those plugins

MyNewSite:http://gogetax.com
Forums(About BLO and more):http://gogetax.com/forum
Uncle Sam
18
Years of Service
User Offline
Joined: 23rd Jul 2005
Location: West Coast, USA
Posted: 5th Sep 2006 07:16 Edited at: 5th Sep 2006 07:45
One thing, does that password and username mean I enter in my password and email address or something for my email account, 'cause I don't want to do that.

EDIT: and it doesn't work, it quits right the beginning after 2-3 seconds and prints no error. I have DBP version 6.2b.

Uncle Sam
Nvidia Geforce 7600 GS 256MB PCIEx, 2.66 GHZ Pentium 4 proccessor, 768MB RAM
Need particles? Click here!
Rudolpho
18
Years of Service
User Offline
Joined: 28th Dec 2005
Location: Sweden
Posted: 7th Sep 2006 18:07
@Sergey K: Ah, I see.

@Uncle Sam: No, it's the username and password for the mailserver you connect to.

Det är väl så
Silvester
18
Years of Service
User Offline
Joined: 7th Dec 2005
Location: Netherlands
Posted: 7th Sep 2006 20:15
Sergey,what happened to morning Online?

ive looked at it,is it the basic part of Blue Light?

oh,nice plugin

(""(o_o)(""
Sergey K
20
Years of Service
User Offline
Joined: 4th Jan 2004
Location:
Posted: 8th Sep 2006 10:44
BlueLight Online is the upgraded version of Morning Online.
the BLO hasnt finished cuz of the army. sorry about that..

MyNewSite:http://gogetax.com
Forums(About BLO and more):http://gogetax.com/forum
Silvester
18
Years of Service
User Offline
Joined: 7th Dec 2005
Location: Netherlands
Posted: 8th Sep 2006 13:35
OK,i found Morining online a few days back and i found it intresting,thats why i asked

Login to post a reply

Server time is: 2024-04-20 15:08:43
Your offset time is: 2024-04-20 15:08:43