send-email
This module has been generated via dagger init and serves as a reference tobasic module structure as you get started with Dagger.
Two functions have been pre-created. You can modify, delete, or add to them,
as needed. They demonstrate usage of arguments and return types using simple
echo and grep commands. The functions can be called from the dagger CLI or
from one of the SDKs.
The first line in this comment block is a short description line and the
rest is a long description with more detail on the module's purpose or usage,
if appropriate. All modules should have a short description.
Installation
dagger install github.com/ernesto27/daggerverse/send-email@v0.0.1
Entrypoint
Return Type
SendEmail
Example
dagger -m github.com/ernesto27/daggerverse/send-email@a882dc829ff356a991739dfc5c2ced1a274b9617 call \
func (m *myModule) example() *SendEmail {
return dag.
SendEmail()
}
@function
def example() -> dag.SendEmail:
return (
dag.send_email()
)
@func()
example(): SendEmail {
return dag
.sendEmail()
}
Types
SendEmail 🔗
sendEmail() 🔗
Return Type
String !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
from | String ! | - | No description provided |
to | String ! | - | No description provided |
subject | String ! | - | No description provided |
body | String ! | - | No description provided |
host | String ! | - | No description provided |
port | Integer ! | - | No description provided |
username | String ! | - | No description provided |
password | String ! | - | No description provided |
Example
dagger -m github.com/ernesto27/daggerverse/send-email@a882dc829ff356a991739dfc5c2ced1a274b9617 call \
send-email --from string --to string --subject string --body string --host string --port integer --username string --password string
func (m *myModule) example(ctx context.Context, from string, to string, subject string, body string, host string, port int, username string, password string) string {
return dag.
SendEmail().
SendEmail(ctx, from, to, subject, body, host, port, username, password)
}
@function
async def example(from_: str, to: str, subject: str, body: str, host: str, port: int, username: str, password: str) -> str:
return await (
dag.send_email()
.send_email(from_, to, subject, body, host, port, username, password)
)
@func()
async example(from: string, to: string, subject: string, body: string, host: string, port: number, username: string, password: string): Promise<string> {
return dag
.sendEmail()
.sendEmail(from, to, subject, body, host, port, username, password)
}