I want to send a HTTP request with Verilog HDL using Altera D2-115 I'm implementing a security system using smoke detectors and IR breaker circuits, in case of an alarm the system should send a HTTP request to send an email.
You want to use a FPGA to do a task that is much better suited for a SOC.
That said, you can turn your FPGA into a SOC: instantiate a NIOS-II processor inside your Altera device, connect it to relevant devices, such as RAM, flash-ROM, SD slot for permanent storage, and of course the Ethernet chip, and write a program for the NIOS-II processor that will send the HTTP request via the Ethernet chip. This implies that you will have to include in your program a TCP/IP stack to actually send any information to the Internet, receive any response and managing the handshaking. It has not to be a complete stack, just TCP, IP and possibly ICMP and ARP. UDP is not needed.
If using the DE2-115 board is a personal option and it's not imposed, you may want to look for a microcontroller with a ready made TCP/IP stack and support for Ethernet. A plain Raspberry Pi is much well suited (and way much cheaper), even if you don't actually need a complete Linux system.
Trying to do all the stuff using only Verilog would mean: