Page 1 of 2 12 LastLast
Results 1 to 15 of 19

Hybrid View

  1. #1
    258456's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    ghjghj
    Posts
    1,222
    Reputation
    18
    Thanks
    300
    My Mood
    Relaxed

    [Request]Email[Tutorial]

    I was wondering how i would be able to code a program to send emails. I have tried to google it before i posted here so that i don't annoy anybody but i couldn't find anything good. All i know is that i will need to be using the smtp server because i have a gmail. So any help would be appreciated. Thank you in advance.

  2. #2
    freedompeace's Avatar
    Join Date
    Jul 2010
    Gender
    female
    Posts
    3,033
    Reputation
    340
    Thanks
    2,792
    My Mood
    Sad
    STMP + Winsock. It'd be much easier if you used CLR / Managed C++, rather than just native.

  3. #3
    Auxilium's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    深い碧の果てに
    Posts
    4,518
    Reputation
    445
    Thanks
    609
    My Mood
    Happy
    Quote Originally Posted by freedompeace View Post
    STMP + Winsock. It'd be much easier if you used CLR / Managed C++, rather than just native.
    Eww managed C++ is eww

  4. The Following User Says Thank You to Auxilium For This Useful Post:

    Hell_Demon (08-20-2010)

  5. #4
    Stephen's Avatar
    Join Date
    Jun 2009
    Gender
    male
    Location
    Engine.exe
    Posts
    4,689
    Reputation
    184
    Thanks
    1,149
    My Mood
    Aggressive
    Quote Originally Posted by Koreans View Post


    Eww managed C++ is eww

    Yup Yup.

  6. #5
    freedompeace's Avatar
    Join Date
    Jul 2010
    Gender
    female
    Posts
    3,033
    Reputation
    340
    Thanks
    2,792
    My Mood
    Sad
    Quote Originally Posted by 258456 View Post
    but idk the code
    Search Engines exist for a reason, they've helped you find this site, now they can help you find your code.

    Quote Originally Posted by Koreans View Post


    Eww managed C++ is eww
    And why is that?

  7. #6
    Hell_Demon's Avatar
    Join Date
    Mar 2008
    Gender
    male
    Location
    I love causing havoc
    Posts
    3,976
    Reputation
    343
    Thanks
    4,320
    My Mood
    Cheeky
    Quote Originally Posted by freedompeace View Post
    Search Engines exist for a reason, they've helped you find this site, now they can help you find your code.



    And why is that?
    I'm too lazy to search for comparable code, all I know is managed C++ has random crap like "a::^x()"
    Ah we-a blaze the fyah, make it bun dem!

  8. #7
    freedompeace's Avatar
    Join Date
    Jul 2010
    Gender
    female
    Posts
    3,033
    Reputation
    340
    Thanks
    2,792
    My Mood
    Sad
    Quote Originally Posted by Hell_Demon View Post
    I'm too lazy to search for comparable code, all I know is managed C++ has random crap like "a::^x()"
    And what's wrong with that?

    Managed C+ increases productivity and reduces the need to code by many times.

  9. #8
    258456's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    ghjghj
    Posts
    1,222
    Reputation
    18
    Thanks
    300
    My Mood
    Relaxed
    but idk the code

  10. #9
    Melodia's Avatar
    Join Date
    Dec 2009
    Gender
    female
    Posts
    2,608
    Reputation
    276
    Thanks
    1,662
    My Mood
    Dead
    Just use GMail's Smtp Servers, Options Available in your Account Settings.
    Love You All~

  11. #10
    258456's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    ghjghj
    Posts
    1,222
    Reputation
    18
    Thanks
    300
    My Mood
    Relaxed
    Melodia, what do you mean, i can't find it in my account settings, and i want the program to email me.

  12. #11
    Melodia's Avatar
    Join Date
    Dec 2009
    Gender
    female
    Posts
    2,608
    Reputation
    276
    Thanks
    1,662
    My Mood
    Dead
    Quote Originally Posted by 258456 View Post
    Melodia, what do you mean, i can't find it in my account settings, and i want the program to email me.
    I Know ; You need a Server to Send Standard Mails.

    What I mean, Is that you sould look on MSDN.
    Love You All~

  13. #12
    NextGen1's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    Not sure really.
    Posts
    6,312
    Reputation
    382
    Thanks
    3,019
    My Mood
    Amazed
    Just Create a VB Application and use Gmail.

    There is plenty of documentation, Plus search the VB section I have release (somewhere) and so has many others, source to make a email program.

  14. The Following User Says Thank You to NextGen1 For This Useful Post:

    Hell_Demon (08-21-2010)

  15. #13
    radnomguywfq3's Avatar
    Join Date
    Jan 2007
    Gender
    male
    Location
    J:\E\T\A\M\A\Y.exe
    Posts
    8,858
    Reputation
    381
    Thanks
    1,823
    My Mood
    Sad
    I hate how people complain about managed languages. Sure the syntax in BASIC .Net is horrible(and it is), and it's performance isn't amazing. However more respectable languages such as Managed C++ and C# have several advantages over C and C++. They have a large mass of libraries backing them up, and theoretically they are cross-platform(and some open-sourced linux organizations have been taking advantage of this). Though it isn't supported directly by Microsoft, it is 100% legal. With managed languages, the JIT can, and does, compile the code to native code specifically for the host machine. (I.e it can make critical optimization decisions based on the hardware when it's compiling the CIL to native code). Where as with c\c++ it's compiled for one specific set of hardware.

    .Net languages are clearly not what you'd use to write kernel-level software(though they have been used to do so, there are compact versions of the .Net framework that have been brought to the kernel-level). But I mean, come on people, most of you here are just writing hacks that won't even in the most remote effect depend on performance, so ultimately it doesn't matter at all.

    Obviously if you want to write game engines professionally you need to understand C\C++ but that's the easiest part. You can inherit your OOP skills from .Net(not all of it without some hackery in C\C++), your AI knowledge from .Net, and your understanding of DirectX or any other graphics API. For example, XNA gives you the ability to access and interface with it in the same way you would DirectX.

    In the end, it doesn't matter. It's easy to learn C++, but it's hard to understand and make design decisions, and understand the theory behind graphics interfaces and AI. If you ever want to perform hardware hacking though, you're going to need to take a much deeper step then C anyway.

    Once you've learned C#, C++ is easy. You just need to learn how to manage memory allocation and use pointers & references. Ofc you will need to understand how to use the standard C libraries, but again this isn't too difficult after working with the .Net framework.

    If you're too afraid to step into managed C++ then you're too afraid to keep up with technology, because I guarantee companies are going to start using it(I hate the new syntax too though :/).

    Also, this whole argument is based upon the assumption that when we regard C++, we regard both it and the common compilers used with it, as theoretically it can be compiled the same way C# is.
    Last edited by radnomguywfq3; 08-21-2010 at 07:11 AM.



    There are two types of tragedies in life. One is not getting what you want, the other is getting it.

    If you wake up at a different time in a different place, could you wake up as a different person?


  16. #14
    Toxic Waltz's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    114
    Reputation
    14
    Thanks
    18
    Quote Originally Posted by Jetamay View Post
    With managed languages, the JIT can, and does, compile the code to native code specifically for the host machine. (I.e it can make critical optimization decisions based on the hardware when it's compiling the CIL to native code)..
    What is JIT? you don't mean just in time, do you?
    What is CIL?

    good speech
    Last edited by Toxic Waltz; 08-21-2010 at 08:28 AM.

  17. #15
    radnomguywfq3's Avatar
    Join Date
    Jan 2007
    Gender
    male
    Location
    J:\E\T\A\M\A\Y.exe
    Posts
    8,858
    Reputation
    381
    Thanks
    1,823
    My Mood
    Sad
    JIT is the just in time compiler. It compiles segments of an executable as they're used. You can think of CIL like x86 assembly which isn't executed by the processor(and ofc doesn't adopt the x86 instruction set). The difference is, this code isn't directly executed on the processor, it is instead interpreted by a vm and translated to native code(code which is executed on the processor). Because interpretation by a VM is slow, it is common for .Net apps to either be

    AOT compiled - Compiled directly to an x86 executable(or whatever the target platform is). I.e you can compile C# to native executable code like you can with C\C++. You can then distribute you C# application as an x86 executable binary file if you'd like. The target will still need the .Net framework installed though.

    JIT compiled - Most common, and is the process of converting CIL to native executable code as the code is executed. Thus, the first time a routine is executed, it will be slightly slower then the remaining times it is executed. The advantage of this, is that the JIT can make critical optimization decisions about what the CIL is converted to. I.e if the processor offers an instruction that which can replace three or four, it will choose the faster set of instruction. This is otherwise impossible in AOH compiled languages(such as C).
    Last edited by radnomguywfq3; 08-21-2010 at 08:59 AM.



    There are two types of tragedies in life. One is not getting what you want, the other is getting it.

    If you wake up at a different time in a different place, could you wake up as a different person?


  18. The Following User Says Thank You to radnomguywfq3 For This Useful Post:

    Toxic Waltz (08-21-2010)

Page 1 of 2 12 LastLast

Similar Threads

  1. [Request] A tutorial about..
    By AgentElmo in forum Programming Tutorial Requests
    Replies: 0
    Last Post: 09-20-2008, 09:14 AM
  2. <Request> Photoshop Tutorials
    By Calderon in forum Hack Requests
    Replies: 0
    Last Post: 12-15-2007, 07:55 AM
  3. (Request) A tutorial on how to extract addresses from trainers
    By englishpom in forum WarRock - International Hacks
    Replies: 9
    Last Post: 05-19-2007, 10:14 PM
  4. [REQUEST]trainer tutorial
    By kanym in forum WarRock - International Hacks
    Replies: 3
    Last Post: 04-24-2007, 07:47 AM
  5. Requesting: Hacking Tutorial
    By AthlaS in forum Hack Requests
    Replies: 1
    Last Post: 01-15-2006, 06:11 PM