Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- wpf
- 벡터db
- compyUI
- 3d lidar
- 리액트데쉬보드
- ajax 2개 부르기
- react
- 그누보드 짧은글주소
- vector dbms
- 달리3
- KBS걸작 다큐 돈의힘
- 피그마오류
- 스테이블디퓨젼
- 금융의힘
- 미드저니
- 고려사이버대학교 인공지능
- 경제를보는눈
- 넥시온
- 영카트
- TypeConverterMarkupExtensionthrew an exception
- blazor
- 플러터생성파일
- 그누보드
- 스프링부트3
- suno ai
- 엑셀수식 암호
- 리액트
- clearbridge investments #unity software
- 대시보드 프로젝트
- 자율주행딥러닝
Archives
- Today
- Total
ClemensKim - kyj909
Zend Framework 2 Mail 관련 샘플 본문
Zend Framework 2 사용시 메일관련 샘플
http://framework.zend.com/manual/1.12/en/zend.mail.introduction.html
- $mail = new Zend_Mail();
- $mail->setBodyText('This is the text of the mail.');
- $mail->setFrom('somebody@example.com', 'Some Sender');
- $mail->addTo('somebody_else@example.com', 'Some Recipient');
- $mail->setSubject('TestSubject');
- $mail->send();
----------------------------------------------------------------------
- $mail = new Zend_Mail();
- $mail->setBodyText('This is the text of the mail.')
- ->setFrom('somebody@example.com', 'Some Sender')
- ->addTo('somebody_else@example.com', 'Some Recipient')
- ->setSubject('TestSubject')
- ->send();
---------------------------------------------------------------------
- $tr = new Zend_Mail_Transport_Sendmail('-freturn_to_me@example.com');
- Zend_Mail::setDefaultTransport($tr);
- $mail = new Zend_Mail();
- $mail->setBodyText('This is the text of the mail.');
- $mail->setFrom('somebody@example.com', 'Some Sender');
- $mail->addTo('somebody_else@example.com', 'Some Recipient');
- $mail->setSubject('TestSubject');
- $mail->send();
---------------------------------------------------------------------
도서참조
Zend Framework2.0 by Example
'IT > JAVA & PHP' 카테고리의 다른 글
iis7.5 그누보드 에러추가 (0) | 2015.06.13 |
---|---|
그누보드5 설치후 글쓰기 화면이 안보일때 (0) | 2015.04.27 |
그누보드 5 windows 2008 r2 설치시 에러들. (0) | 2015.04.18 |
php 설치후 HTTP 오류 500.0 - Internal Server Error (2) | 2015.01.07 |
Google Drive API 이걸 어디다 적어야 하나.. (0) | 2014.05.13 |
Comments