| | 248 | |
|---|
| | 249 | __END__ |
|---|
| | 250 | |
|---|
| | 251 | =head1 NAME |
|---|
| | 252 | |
|---|
| | 253 | Plagger::Plugin::Publish::Gmail - Notify updates to your email account |
|---|
| | 254 | |
|---|
| | 255 | =head1 SYNOPSIS |
|---|
| | 256 | |
|---|
| | 257 | - module: Publish::Gmail |
|---|
| | 258 | config: |
|---|
| | 259 | mailto: example@gmail.com |
|---|
| | 260 | mailfrom: you@example.net |
|---|
| | 261 | |
|---|
| | 262 | =head1 DESCRIPTION |
|---|
| | 263 | |
|---|
| | 264 | This plugin creates HTML emails and sends them to your Gmail mailbox. |
|---|
| | 265 | |
|---|
| | 266 | =head1 CONFIG |
|---|
| | 267 | |
|---|
| | 268 | =over 4 |
|---|
| | 269 | |
|---|
| | 270 | =item mailto |
|---|
| | 271 | |
|---|
| | 272 | Your email address to send updatess to. Required. |
|---|
| | 273 | |
|---|
| | 274 | =item mailfrom |
|---|
| | 275 | |
|---|
| | 276 | Email address to send email from. Defaults to I<plagger@localhost>. |
|---|
| | 277 | |
|---|
| | 278 | =item mailroute |
|---|
| | 279 | |
|---|
| | 280 | Hash to specify how to send emails. Defaults to: |
|---|
| | 281 | |
|---|
| | 282 | mailroute: |
|---|
| | 283 | via: smtp |
|---|
| | 284 | host: localhost |
|---|
| | 285 | |
|---|
| | 286 | the value of I<via> would be either I<smtp>, I<smtp_tls> or I<sendmail>. |
|---|
| | 287 | |
|---|
| | 288 | mailroute: |
|---|
| | 289 | via: sendmail |
|---|
| | 290 | command: /usr/sbin/sendmail |
|---|
| | 291 | |
|---|
| | 292 | =item attach_enclosures |
|---|
| | 293 | |
|---|
| | 294 | Flag to attach enclosures as Email attachments. Defaults to 0. |
|---|
| | 295 | |
|---|
| | 296 | =back |
|---|
| | 297 | |
|---|
| | 298 | =head1 AUTHOR |
|---|
| | 299 | |
|---|
| | 300 | Tatsuhiko Miyagawa |
|---|
| | 301 | |
|---|
| | 302 | =head1 SEE ALSO |
|---|
| | 303 | |
|---|
| | 304 | L<Plagger>, L<MIME::Lite> |
|---|
| | 305 | |
|---|
| | 306 | =cut |
|---|